Answers for "migrate a single table rails"

1

using SQL in rails migration

def change
  execute <<-SQL
    UPDATE table1
    SET column1 = "value"
  SQL
end
Posted by: Guest on January-14-2021
0

see migration history rails

rake db:migrate:status
Posted by: Guest on November-26-2020

Code answers related to "migrate a single table rails"

Browse Popular Code Answers by Language