thirteen-tien-len/db/migrate/20151125095642_add_current_game_id_to_table.rb
2019-10-29 06:12:08 -07:00

6 lines
135 B
Ruby

class AddCurrentGameIdToTable < ActiveRecord::Migration[5.2]
def change
add_column :tables, :current_game_id, :integer
end
end