Hello! I try to make automatic migrations directly from ruby script without using rake and console commands. But I can''t retrieve current database schema version. I have tried to use ActiveRecord::Migration.version and @version property in a child of ActiveRecord::Migration. The result was nil at both cases. How can I do this? Thank you. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
I have found the solution, but only by looking source code of activerecord gem. It''s simple :) ActiveRecord::Migrator.current_version -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
Seemingly Similar Threads
- heroku rake db:drop error PG::Error: FATAL: permission denied for database "postgres"
- make rails connect with database
- Is there a way to prevent an accidental migration from newer version of app to older one?
- Database schema question
- Database design, working but looking for better ways