mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-24 17:04:43 +00:00
11 lines
228 B
Ruby
11 lines
228 B
Ruby
class CreateTournamentDelegates < ActiveRecord::Migration[4.2]
|
|
def change
|
|
create_table :tournament_delegates do |t|
|
|
t.integer :user_id
|
|
t.integer :tournament_id
|
|
|
|
t.timestamps null: false
|
|
end
|
|
end
|
|
end
|