mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-26 12:30:48 +00:00
14 lines
335 B
Ruby
14 lines
335 B
Ruby
class CreateMatchProposals < ActiveRecord::Migration
|
|
def up
|
|
create_table :match_proposals do |t|
|
|
t.references :match, index: true, forign_key: true
|
|
t.references :team, forign_key: true
|
|
t.datetime :proposed_time
|
|
t.integer :status
|
|
end
|
|
|
|
add_index :match_proposals, :status
|
|
end
|
|
|
|
def down; end
|
|
end
|