20180611152223_create_groups.rb 208 Bytes
class CreateGroups < ActiveRecord::Migration[5.0]
  def change
    create_table :groups do |t|
      t.integer :user_id, index: true
      t.integer :pool_id, index: true
      t.timestamps
    end
  end
end