create migration create table rails code example
Example 1: how create migration rails
rails g migration AddPartNumberToProducts
Example 2: using SQL in rails migration
def change
execute <<-SQL
UPDATE table1
SET column1 = "value"
SQL
end