From 423d0e5a440d8d66407522bc842ef273196173bc Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Mon, 3 Mar 2014 22:20:02 -0500 Subject: run ./generate.sh --- db/migrate/20140304021249_create_servers.rb | 8 -------- db/migrate/20140304021251_create_tournaments.rb | 9 --------- db/migrate/20140304021254_create_matches.rb | 10 ---------- db/migrate/20140304021256_create_teams.rb | 8 -------- db/migrate/20140304021258_create_alerts.rb | 10 ---------- db/migrate/20140304021301_create_pms.rb | 11 ----------- db/migrate/20140304021303_create_games.rb | 13 ------------- db/migrate/20140304021306_create_game_attributes.rb | 11 ----------- db/migrate/20140304021308_create_server_settings.rb | 8 -------- db/migrate/20140304021310_create_users.rb | 11 ----------- db/migrate/20140304021312_create_user_team_pairs.rb | 10 ---------- db/migrate/20140304021314_create_team_match_pairs.rb | 10 ---------- db/migrate/20140304021327_create_tournament_options.rb | 8 -------- db/migrate/20140304031800_create_servers.rb | 8 ++++++++ db/migrate/20140304031802_create_tournaments.rb | 9 +++++++++ db/migrate/20140304031804_create_matches.rb | 10 ++++++++++ db/migrate/20140304031806_create_teams.rb | 8 ++++++++ db/migrate/20140304031808_create_alerts.rb | 10 ++++++++++ db/migrate/20140304031810_create_pms.rb | 11 +++++++++++ db/migrate/20140304031813_create_games.rb | 13 +++++++++++++ db/migrate/20140304031815_create_users.rb | 11 +++++++++++ db/migrate/20140304031817_create_game_attributes.rb | 11 +++++++++++ db/migrate/20140304031819_create_server_settings.rb | 8 ++++++++ db/migrate/20140304031821_create_user_team_pairs.rb | 10 ++++++++++ db/migrate/20140304031823_create_team_match_pairs.rb | 10 ++++++++++ db/migrate/20140304031834_create_tournament_options.rb | 8 ++++++++ 26 files changed, 127 insertions(+), 127 deletions(-) delete mode 100644 db/migrate/20140304021249_create_servers.rb delete mode 100644 db/migrate/20140304021251_create_tournaments.rb delete mode 100644 db/migrate/20140304021254_create_matches.rb delete mode 100644 db/migrate/20140304021256_create_teams.rb delete mode 100644 db/migrate/20140304021258_create_alerts.rb delete mode 100644 db/migrate/20140304021301_create_pms.rb delete mode 100644 db/migrate/20140304021303_create_games.rb delete mode 100644 db/migrate/20140304021306_create_game_attributes.rb delete mode 100644 db/migrate/20140304021308_create_server_settings.rb delete mode 100644 db/migrate/20140304021310_create_users.rb delete mode 100644 db/migrate/20140304021312_create_user_team_pairs.rb delete mode 100644 db/migrate/20140304021314_create_team_match_pairs.rb delete mode 100644 db/migrate/20140304021327_create_tournament_options.rb create mode 100644 db/migrate/20140304031800_create_servers.rb create mode 100644 db/migrate/20140304031802_create_tournaments.rb create mode 100644 db/migrate/20140304031804_create_matches.rb create mode 100644 db/migrate/20140304031806_create_teams.rb create mode 100644 db/migrate/20140304031808_create_alerts.rb create mode 100644 db/migrate/20140304031810_create_pms.rb create mode 100644 db/migrate/20140304031813_create_games.rb create mode 100644 db/migrate/20140304031815_create_users.rb create mode 100644 db/migrate/20140304031817_create_game_attributes.rb create mode 100644 db/migrate/20140304031819_create_server_settings.rb create mode 100644 db/migrate/20140304031821_create_user_team_pairs.rb create mode 100644 db/migrate/20140304031823_create_team_match_pairs.rb create mode 100644 db/migrate/20140304031834_create_tournament_options.rb (limited to 'db/migrate') diff --git a/db/migrate/20140304021249_create_servers.rb b/db/migrate/20140304021249_create_servers.rb deleted file mode 100644 index f33241a..0000000 --- a/db/migrate/20140304021249_create_servers.rb +++ /dev/null @@ -1,8 +0,0 @@ -class CreateServers < ActiveRecord::Migration - def change - create_table :servers do |t| - - t.timestamps - end - end -end diff --git a/db/migrate/20140304021251_create_tournaments.rb b/db/migrate/20140304021251_create_tournaments.rb deleted file mode 100644 index 36fcf7e..0000000 --- a/db/migrate/20140304021251_create_tournaments.rb +++ /dev/null @@ -1,9 +0,0 @@ -class CreateTournaments < ActiveRecord::Migration - def change - create_table :tournaments do |t| - t.references :game, index: true - - t.timestamps - end - end -end diff --git a/db/migrate/20140304021254_create_matches.rb b/db/migrate/20140304021254_create_matches.rb deleted file mode 100644 index 325863d..0000000 --- a/db/migrate/20140304021254_create_matches.rb +++ /dev/null @@ -1,10 +0,0 @@ -class CreateMatches < ActiveRecord::Migration - def change - create_table :matches do |t| - t.references :tournament, index: true - t.string :name - - t.timestamps - end - end -end diff --git a/db/migrate/20140304021256_create_teams.rb b/db/migrate/20140304021256_create_teams.rb deleted file mode 100644 index dd8397d..0000000 --- a/db/migrate/20140304021256_create_teams.rb +++ /dev/null @@ -1,8 +0,0 @@ -class CreateTeams < ActiveRecord::Migration - def change - create_table :teams do |t| - - t.timestamps - end - end -end diff --git a/db/migrate/20140304021258_create_alerts.rb b/db/migrate/20140304021258_create_alerts.rb deleted file mode 100644 index 68a8e10..0000000 --- a/db/migrate/20140304021258_create_alerts.rb +++ /dev/null @@ -1,10 +0,0 @@ -class CreateAlerts < ActiveRecord::Migration - def change - create_table :alerts do |t| - t.references :author, index: true - t.text :message - - t.timestamps - end - end -end diff --git a/db/migrate/20140304021301_create_pms.rb b/db/migrate/20140304021301_create_pms.rb deleted file mode 100644 index 93bb5c6..0000000 --- a/db/migrate/20140304021301_create_pms.rb +++ /dev/null @@ -1,11 +0,0 @@ -class CreatePms < ActiveRecord::Migration - def change - create_table :pms do |t| - t.references :author, index: true - t.references :recipient, index: true - t.text :message - - t.timestamps - end - end -end diff --git a/db/migrate/20140304021303_create_games.rb b/db/migrate/20140304021303_create_games.rb deleted file mode 100644 index 59d4ef0..0000000 --- a/db/migrate/20140304021303_create_games.rb +++ /dev/null @@ -1,13 +0,0 @@ -class CreateGames < ActiveRecord::Migration - def change - create_table :games do |t| - t.text :name - t.integer :players_per_team - t.integer :teams_per_match - t.integer :set_rounds - t.integer :randomized_teams - - t.timestamps - end - end -end diff --git a/db/migrate/20140304021306_create_game_attributes.rb b/db/migrate/20140304021306_create_game_attributes.rb deleted file mode 100644 index b63f134..0000000 --- a/db/migrate/20140304021306_create_game_attributes.rb +++ /dev/null @@ -1,11 +0,0 @@ -class CreateGameAttributes < ActiveRecord::Migration - def change - create_table :game_attributes do |t| - t.references :game, index: true - t.text :key - t.integer :type - - t.timestamps - end - end -end diff --git a/db/migrate/20140304021308_create_server_settings.rb b/db/migrate/20140304021308_create_server_settings.rb deleted file mode 100644 index dfdd91b..0000000 --- a/db/migrate/20140304021308_create_server_settings.rb +++ /dev/null @@ -1,8 +0,0 @@ -class CreateServerSettings < ActiveRecord::Migration - def change - create_table :server_settings do |t| - - t.timestamps - end - end -end diff --git a/db/migrate/20140304021310_create_users.rb b/db/migrate/20140304021310_create_users.rb deleted file mode 100644 index f0986d4..0000000 --- a/db/migrate/20140304021310_create_users.rb +++ /dev/null @@ -1,11 +0,0 @@ -class CreateUsers < ActiveRecord::Migration - def change - create_table :users do |t| - t.string :name - t.string :email - t.string :user_name - - t.timestamps - end - end -end diff --git a/db/migrate/20140304021312_create_user_team_pairs.rb b/db/migrate/20140304021312_create_user_team_pairs.rb deleted file mode 100644 index 2c492ac..0000000 --- a/db/migrate/20140304021312_create_user_team_pairs.rb +++ /dev/null @@ -1,10 +0,0 @@ -class CreateUserTeamPairs < ActiveRecord::Migration - def change - create_table :user_team_pairs do |t| - t.references :user, index: true - t.references :team, index: true - - t.timestamps - end - end -end diff --git a/db/migrate/20140304021314_create_team_match_pairs.rb b/db/migrate/20140304021314_create_team_match_pairs.rb deleted file mode 100644 index 8fac07e..0000000 --- a/db/migrate/20140304021314_create_team_match_pairs.rb +++ /dev/null @@ -1,10 +0,0 @@ -class CreateTeamMatchPairs < ActiveRecord::Migration - def change - create_table :team_match_pairs do |t| - t.references :team, index: true - t.references :match, index: true - - t.timestamps - end - end -end diff --git a/db/migrate/20140304021327_create_tournament_options.rb b/db/migrate/20140304021327_create_tournament_options.rb deleted file mode 100644 index d2df22e..0000000 --- a/db/migrate/20140304021327_create_tournament_options.rb +++ /dev/null @@ -1,8 +0,0 @@ -class CreateTournamentOptions < ActiveRecord::Migration - def change - create_table :tournament_options do |t| - - t.timestamps - end - end -end diff --git a/db/migrate/20140304031800_create_servers.rb b/db/migrate/20140304031800_create_servers.rb new file mode 100644 index 0000000..f33241a --- /dev/null +++ b/db/migrate/20140304031800_create_servers.rb @@ -0,0 +1,8 @@ +class CreateServers < ActiveRecord::Migration + def change + create_table :servers do |t| + + t.timestamps + end + end +end diff --git a/db/migrate/20140304031802_create_tournaments.rb b/db/migrate/20140304031802_create_tournaments.rb new file mode 100644 index 0000000..36fcf7e --- /dev/null +++ b/db/migrate/20140304031802_create_tournaments.rb @@ -0,0 +1,9 @@ +class CreateTournaments < ActiveRecord::Migration + def change + create_table :tournaments do |t| + t.references :game, index: true + + t.timestamps + end + end +end diff --git a/db/migrate/20140304031804_create_matches.rb b/db/migrate/20140304031804_create_matches.rb new file mode 100644 index 0000000..325863d --- /dev/null +++ b/db/migrate/20140304031804_create_matches.rb @@ -0,0 +1,10 @@ +class CreateMatches < ActiveRecord::Migration + def change + create_table :matches do |t| + t.references :tournament, index: true + t.string :name + + t.timestamps + end + end +end diff --git a/db/migrate/20140304031806_create_teams.rb b/db/migrate/20140304031806_create_teams.rb new file mode 100644 index 0000000..dd8397d --- /dev/null +++ b/db/migrate/20140304031806_create_teams.rb @@ -0,0 +1,8 @@ +class CreateTeams < ActiveRecord::Migration + def change + create_table :teams do |t| + + t.timestamps + end + end +end diff --git a/db/migrate/20140304031808_create_alerts.rb b/db/migrate/20140304031808_create_alerts.rb new file mode 100644 index 0000000..68a8e10 --- /dev/null +++ b/db/migrate/20140304031808_create_alerts.rb @@ -0,0 +1,10 @@ +class CreateAlerts < ActiveRecord::Migration + def change + create_table :alerts do |t| + t.references :author, index: true + t.text :message + + t.timestamps + end + end +end diff --git a/db/migrate/20140304031810_create_pms.rb b/db/migrate/20140304031810_create_pms.rb new file mode 100644 index 0000000..93bb5c6 --- /dev/null +++ b/db/migrate/20140304031810_create_pms.rb @@ -0,0 +1,11 @@ +class CreatePms < ActiveRecord::Migration + def change + create_table :pms do |t| + t.references :author, index: true + t.references :recipient, index: true + t.text :message + + t.timestamps + end + end +end diff --git a/db/migrate/20140304031813_create_games.rb b/db/migrate/20140304031813_create_games.rb new file mode 100644 index 0000000..59d4ef0 --- /dev/null +++ b/db/migrate/20140304031813_create_games.rb @@ -0,0 +1,13 @@ +class CreateGames < ActiveRecord::Migration + def change + create_table :games do |t| + t.text :name + t.integer :players_per_team + t.integer :teams_per_match + t.integer :set_rounds + t.integer :randomized_teams + + t.timestamps + end + end +end diff --git a/db/migrate/20140304031815_create_users.rb b/db/migrate/20140304031815_create_users.rb new file mode 100644 index 0000000..f0986d4 --- /dev/null +++ b/db/migrate/20140304031815_create_users.rb @@ -0,0 +1,11 @@ +class CreateUsers < ActiveRecord::Migration + def change + create_table :users do |t| + t.string :name + t.string :email + t.string :user_name + + t.timestamps + end + end +end diff --git a/db/migrate/20140304031817_create_game_attributes.rb b/db/migrate/20140304031817_create_game_attributes.rb new file mode 100644 index 0000000..b63f134 --- /dev/null +++ b/db/migrate/20140304031817_create_game_attributes.rb @@ -0,0 +1,11 @@ +class CreateGameAttributes < ActiveRecord::Migration + def change + create_table :game_attributes do |t| + t.references :game, index: true + t.text :key + t.integer :type + + t.timestamps + end + end +end diff --git a/db/migrate/20140304031819_create_server_settings.rb b/db/migrate/20140304031819_create_server_settings.rb new file mode 100644 index 0000000..dfdd91b --- /dev/null +++ b/db/migrate/20140304031819_create_server_settings.rb @@ -0,0 +1,8 @@ +class CreateServerSettings < ActiveRecord::Migration + def change + create_table :server_settings do |t| + + t.timestamps + end + end +end diff --git a/db/migrate/20140304031821_create_user_team_pairs.rb b/db/migrate/20140304031821_create_user_team_pairs.rb new file mode 100644 index 0000000..2c492ac --- /dev/null +++ b/db/migrate/20140304031821_create_user_team_pairs.rb @@ -0,0 +1,10 @@ +class CreateUserTeamPairs < ActiveRecord::Migration + def change + create_table :user_team_pairs do |t| + t.references :user, index: true + t.references :team, index: true + + t.timestamps + end + end +end diff --git a/db/migrate/20140304031823_create_team_match_pairs.rb b/db/migrate/20140304031823_create_team_match_pairs.rb new file mode 100644 index 0000000..8fac07e --- /dev/null +++ b/db/migrate/20140304031823_create_team_match_pairs.rb @@ -0,0 +1,10 @@ +class CreateTeamMatchPairs < ActiveRecord::Migration + def change + create_table :team_match_pairs do |t| + t.references :team, index: true + t.references :match, index: true + + t.timestamps + end + end +end diff --git a/db/migrate/20140304031834_create_tournament_options.rb b/db/migrate/20140304031834_create_tournament_options.rb new file mode 100644 index 0000000..d2df22e --- /dev/null +++ b/db/migrate/20140304031834_create_tournament_options.rb @@ -0,0 +1,8 @@ +class CreateTournamentOptions < ActiveRecord::Migration + def change + create_table :tournament_options do |t| + + t.timestamps + end + end +end -- cgit v1.2.3-54-g00ecf