11 lines
195 B
Ruby
11 lines
195 B
Ruby
class PlayToBeat < ActiveRecord::Migration
|
|
def change
|
|
create_table :play_to_beats do |t|
|
|
t.integer :game_id
|
|
t.integer :play_id
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|