rails belongs to migration code example
Example 1: see migration history rails
rake db:migrate:status
Example 2: using SQL in rails migration
def change
execute <<-SQL
UPDATE table1
SET column1 = "value"
SQL
end
rake db:migrate:status
def change
execute <<-SQL
UPDATE table1
SET column1 = "value"
SQL
end