module SportDb class CreateDb < ActiveRecord::Migration def up create_table :teams do |t| t.string :title, :null => false t.string :title2 t.string :key, :null => false # import/export key t.string :code # make it not null? - three letter code (short title) t.string :synonyms # comma separated list of synonyms t.references :country, :null => false t.references :city # NB: city is optional (should be required for clubs e.g. non-national teams) t.boolean :club, :null => false, :default => false # is it a club (not a national team)? ### fix: remove and add virtual attribute in model instead t.boolean :national, :null => false, :default => false # is it a national selection team (not a club)? t.timestamps end add_index :teams, :key, :unique => true create_table :players do |t| t.string :key, :null => false # import/export key t.string :name, :null => false t.string :synonyms # comma separated list of synonyms t.date :born_at # optional date of birth (birthday) t.references :country, :null => false t.timestamps end create_table :goals do |t| t.references :player, :null => false t.references :game, :null => false t.integer :minute t.integer :offset # e.g. 45' +3 or 90' +2 t.integer :score1 t.integer :score2 ## type of goal (penalty, owngoal) t.boolean :penalty, :null => false, :default => false t.boolean :owngoal, :null => false, :default => false # de: Eigentor -> # todo: find better name? t.timestamps end create_table :events do |t| t.string :key, :null => false # import/export key t.references :league, :null => false t.references :season, :null => false t.date :start_at, :null => false # NB: only use date (w/o time) t.date :end_at # make it required??? # NB: only use date (w/o time) t.boolean :team3, :null => false, :default => true ## e.g. Champions League has no 3rd place (only 1st and 2nd/final) t.timestamps end add_index :events, :key, :unique => true create_table :rounds do |t| t.references :event, :null => false t.string :title, :null => false t.string :title2 t.integer :pos, :null => false ## add new table stage/stages for grouping rounds in group rounds and playoff rounds, for example??? ## # "regular" season (group) games or post-season (playoff) knockouts (k.o's) t.boolean :knockout, :null => false, :default => false t.date :start_at, :null => false # NB: only use date (w/o time) t.date :end_at # todo: make it required e.g. :null => false # NB: only use date (w/o time) t.timestamps end add_index :rounds, :event_id # fk event_id index create_table :groups do |t| # Teamgruppe (zB Gruppe A, Gruppe B, etc.) t.references :event, :null => false t.string :title, :null => false t.integer :pos, :null => false t.timestamps end add_index :groups, :event_id # fk event_id index create_table :games do |t| t.references :round, :null => false t.integer :pos, :null => false t.references :group # note: group is optional t.references :team1, :null => false t.references :team2, :null => false t.datetime :play_at, :null => false t.boolean :postponed, :null => false, :default => false t.datetime :play_at_v2 # optional old date (when postponed) t.datetime :play_at_v3 # optional odl date (when postponed twice) t.boolean :knockout, :null => false, :default => false t.boolean :home, :null => false, :default => true # is team1 play at home (that is, at its home stadium) t.integer :score1 t.integer :score2 t.integer :score1ot # overtime - team 1 (opt) t.integer :score2ot # overtime - team 2 (opt) t.integer :score1p # penalty - team 1 (opt) t.integer :score2p # penalty - team 2 (opt) elfmeter (opt) t.integer :score1i # half time / first third (opt) t.integer :score2i # half time - team 2 t.integer :score1ii # second third (opt) t.integer :score2ii # second third - team2 (opt) t.references :next_game # for hinspiel bei rueckspiel in knockout game t.references :prev_game ### todo> find a better name (toto is not international/english?) ## rename to score12x or pt12x or result12x t.string :toto12x # 1,2,X,nil calculate on save t.string :key # import/export key t.timestamps end add_index :games, :key, :unique => true add_index :games, :round_id # fk round_id index add_index :games, :group_id # fk group_id index add_index :games, :next_game_id # fk next_game_id index add_index :games, :prev_game_id # fk next_game_id index # todo: remove id from join table (without extra fields)? why?? why not?? create_table :events_teams do |t| t.references :event, :null => false t.references :team, :null => false t.timestamps end add_index :events_teams, [:event_id,:team_id], :unique => true add_index :events_teams, :event_id create_table :groups_teams do |t| t.references :group, :null => false t.references :team, :null => false t.timestamps end add_index :groups_teams, [:group_id,:team_id], :unique => true add_index :groups_teams, :group_id ### todo: add models and some seed data create_table :seasons do |t| ## also used for years t.string :key, :null => false t.string :title, :null => false # e.g. 2011/12, 2012/13 ### what to do w/ 2012? for world cup etc? t.timestamps end create_table :leagues do |t| ## also for cups/conferences/tournaments/world series/etc. t.string :key, :null => false t.string :title, :null => false # e.g. Premier League, Deutsche Bundesliga, World Cup, Champions League, etc. t.references :country ## optional for now , :null => false ### todo: create "virtual" country for international leagues e.g. use int? or world (ww?)/europe (eu)/etc. similar? already taken?? ## fix: rename to :clubs from :club t.boolean :club, :null => false, :default => false # club teams or national teams? ## todo: add t.boolean :national flag? for national teams? ## t.boolean :international, :null => false, :default => false # national league or international? ## t.boolean :cup ## or regular season league?? t.timestamps end create_table :badges do |t| t.references :team, :null => false ## todo/fix: use event insead of league+season ?? ## t.references :event, :null => false # event => league+season t.references :league, :null => false t.references :season, :null => false t.string :title, :null => false # Meister, Weltmeister, Europameister, Cupsieger, Vize-Meister, Aufsteiger, Absteiger, etc. t.timestamps end end # method up def down raise ActiveRecord::IrreversibleMigration end end # class CreateDb end # module SportDb