rails run sql after migration code example
Example 1: run a specific migration rails
rake db:migrate:up VERSION=20090408054532
Example 2: using SQL in rails migration
def change
execute <<-SQL
UPDATE table1
SET column1 = "value"
SQL
end