If you look my_uuid_generator() is added to postgres at https://github.com/rails/rails/blob/650ea5e5cf50d8a7242499463cf1762922d330a8/activerecord/test/cases/adapters/postgresql/uuid_test.rb#L186
You can add a stored procedure in a similar fashion in a migration. -- Matt Hickman On Sun, Jul 9, 2017 at 6:56 PM, <[email protected]> wrote: > Hi, I was reading the docs for primary key > <http://api.rubyonrails.org/classes/ActiveRecord/ConnectionAdapters/PostgreSQL/ColumnMethods.html#method-i-primary_key> > on postgresql and I saw that there was a way to add a custom stored > procedure that returns a UUID. There is a test case as well that uses a > custom uuid generator https://github.com/rails/rails/blob/ > 650ea5e5cf50d8a7242499463cf1762922d330a8/activerecord/test/ > cases/adapters/postgresql/uuid_test.rb#L193 but I wasn't sure how to to > implement this myself. > > Like in the test case where do I place 'my_uuid_generator()' and how to > implement it in my rails application? > > Thanks. > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > To view this discussion on the web visit https://groups.google.com/d/ > msgid/rubyonrails-talk/06bd9a3c-eafa-496b-a611- > 2d35906517a3%40googlegroups.com > <https://groups.google.com/d/msgid/rubyonrails-talk/06bd9a3c-eafa-496b-a611-2d35906517a3%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CALzpcTjCrkzdjNgYFv498m7WZ7v8gSQineoMS_gSuWOuw9cqhA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.

