6 lines
130 B
Ruby
6 lines
130 B
Ruby
class AddCurrentGameIdToTable < ActiveRecord::Migration
|
|
def change
|
|
add_column :tables, :current_game_id, :integer
|
|
end
|
|
end
|