Answers for "rails migration create table"

2

activerecord add column

class AddPartNumberToProducts < ActiveRecord::Migration[6.0]
  def change
    add_column :products, :part_number, :string
  end
end
Posted by: Guest on November-11-2020
1

using SQL in rails migration

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

Code answers related to "rails migration create table"

Browse Popular Code Answers by Language