0
0
Fork 0
mirror of https://github.com/ENSL/ensl.org.git synced 2025-01-27 03:30:54 +00:00
ensl.org/db/migrate/20171013154050_create_match_proposals.rb

15 lines
335 B
Ruby
Raw Normal View History

2017-05-01 14:57:32 +00:00
class CreateMatchProposals < ActiveRecord::Migration
def up
2017-05-01 14:57:32 +00:00
create_table :match_proposals do |t|
t.references :match, index: true, forign_key: true
t.references :team, forign_key: true
2017-05-01 14:57:32 +00:00
t.datetime :proposed_time
t.integer :status
2017-05-01 14:57:32 +00:00
end
add_index :match_proposals, :status
2017-05-01 14:57:32 +00:00
end
def down; end
2017-05-01 14:57:32 +00:00
end