Answers for "create table with index migration rails"

1

how do I add index's to a migration in rails

rails generate migration AddUser_idColumnToTable user_id:string. 

class AddIndexToTable < ActiveRecord::Migration
  def change
    add_index :table, :user_id
  end
end
Posted by: Guest on February-14-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 "create table with index migration rails"

Browse Popular Code Answers by Language