ensl.org/db/migrate/20171013154050_create_match_proposals.rb
Ari Timonen 6bcfffa1ee Major update, bugfixes
- Use ruby 2.7.7 as it fixed startup issues
- Update gems
- Remove depr. from puma startup
- Make entry.sh dir-agnostic

Fix tests:
- Use apparition
- Update migrations to use new syntax
- Some other minor changes
2023-02-19 17:08:46 +02:00

14 lines
340 B
Ruby

class CreateMatchProposals < ActiveRecord::Migration[4.2]
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