From e08e007a6c50e1959a29a9d18dec8c52146a233c Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Mon, 28 Apr 2014 09:33:06 -0400 Subject: run ./generate.sh --- app/controllers/games_controller.rb | 2 +- app/controllers/tournaments_controller.rb | 2 +- app/views/games/_form.html.erb | 4 -- app/views/games/index.html.erb | 2 - app/views/games/index.json.jbuilder | 2 +- app/views/games/show.html.erb | 5 -- app/views/games/show.json.jbuilder | 2 +- app/views/tournaments/_form.html.erb | 4 -- app/views/tournaments/index.html.erb | 2 - app/views/tournaments/index.json.jbuilder | 2 +- app/views/tournaments/show.html.erb | 5 -- app/views/tournaments/show.json.jbuilder | 2 +- .../20140427131527_create_simple_captcha_data.rb | 15 ------ ...0427171523_create_mailboxer.mailboxer_engine.rb | 62 ---------------------- ...7171524_add_notified_object.mailboxer_engine.rb | 18 ------- ...71525_add_notification_code.mailboxer_engine.rb | 14 ----- ...40427171526_add_attachments.mailboxer_engine.rb | 10 ---- ...171527_rename_receipts_read.mailboxer_engine.rb | 10 ---- ...global_notification_support.mailboxer_engine.rb | 10 ---- db/migrate/20140427171530_create_delayed_jobs.rb | 22 -------- db/migrate/20140427171533_create_servers.rb | 9 ---- db/migrate/20140427171537_create_matches.rb | 13 ----- db/migrate/20140427171541_create_teams.rb | 8 --- db/migrate/20140427171545_create_alerts.rb | 10 ---- db/migrate/20140427171548_create_pms.rb | 13 ----- db/migrate/20140427171552_create_tournaments.rb | 18 ------- db/migrate/20140427171556_create_games.rb | 17 ------ db/migrate/20140427171600_create_users.rb | 13 ----- db/migrate/20140427171603_create_sessions.rb | 11 ---- db/migrate/20140427171607_create_brackets.rb | 11 ---- db/migrate/20140427171611_create_game_settings.rb | 15 ------ .../20140427171615_create_tournament_settings.rb | 15 ------ .../20140427171618_create_tournament_stages.rb | 12 ----- db/migrate/20140427171622_create_statistics.rb | 12 ----- .../20140427171626_create_remote_usernames.rb | 11 ---- .../20140427171629_create_bracket_matches.rb | 11 ---- db/migrate/20140427171633_create_api_requests.rb | 9 ---- ...7171637_create_tournament_players_join_table.rb | 8 --- ...427171640_create_tournament_hosts_join_table.rb | 8 --- .../20140427171644_create_team_user_join_table.rb | 8 --- .../20140427171647_create_match_team_join_table.rb | 8 --- .../20140427171658_add_hidden_attrs_to_user.rb | 6 --- .../20140428092839_create_simple_captcha_data.rb | 15 ++++++ ...0428132832_create_mailboxer.mailboxer_engine.rb | 62 ++++++++++++++++++++++ ...8132833_add_notified_object.mailboxer_engine.rb | 18 +++++++ ...32834_add_notification_code.mailboxer_engine.rb | 14 +++++ ...40428132835_add_attachments.mailboxer_engine.rb | 10 ++++ ...132836_rename_receipts_read.mailboxer_engine.rb | 10 ++++ ...global_notification_support.mailboxer_engine.rb | 10 ++++ db/migrate/20140428132845_create_delayed_jobs.rb | 22 ++++++++ db/migrate/20140428132852_create_servers.rb | 9 ++++ db/migrate/20140428132900_create_matches.rb | 13 +++++ db/migrate/20140428132907_create_teams.rb | 8 +++ db/migrate/20140428132914_create_alerts.rb | 10 ++++ db/migrate/20140428132922_create_pms.rb | 13 +++++ db/migrate/20140428132929_create_tournaments.rb | 17 ++++++ db/migrate/20140428132937_create_games.rb | 16 ++++++ db/migrate/20140428132944_create_users.rb | 13 +++++ db/migrate/20140428132951_create_sessions.rb | 11 ++++ db/migrate/20140428132958_create_brackets.rb | 11 ++++ db/migrate/20140428133006_create_game_settings.rb | 15 ++++++ .../20140428133013_create_tournament_settings.rb | 15 ++++++ .../20140428133020_create_tournament_stages.rb | 12 +++++ db/migrate/20140428133026_create_statistics.rb | 12 +++++ .../20140428133033_create_remote_usernames.rb | 11 ++++ .../20140428133041_create_bracket_matches.rb | 11 ++++ db/migrate/20140428133048_create_api_requests.rb | 9 ++++ ...8133055_create_tournament_players_join_table.rb | 8 +++ ...428133102_create_tournament_hosts_join_table.rb | 8 +++ .../20140428133109_create_team_user_join_table.rb | 8 +++ .../20140428133116_create_match_team_join_table.rb | 8 +++ .../20140428133136_add_hidden_attrs_to_user.rb | 6 +++ db/schema.rb | 4 +- test/controllers/games_controller_test.rb | 4 +- test/controllers/tournaments_controller_test.rb | 4 +- test/fixtures/games.yml | 2 - test/fixtures/tournaments.yml | 2 - 77 files changed, 416 insertions(+), 446 deletions(-) delete mode 100644 db/migrate/20140427131527_create_simple_captcha_data.rb delete mode 100644 db/migrate/20140427171523_create_mailboxer.mailboxer_engine.rb delete mode 100644 db/migrate/20140427171524_add_notified_object.mailboxer_engine.rb delete mode 100644 db/migrate/20140427171525_add_notification_code.mailboxer_engine.rb delete mode 100644 db/migrate/20140427171526_add_attachments.mailboxer_engine.rb delete mode 100644 db/migrate/20140427171527_rename_receipts_read.mailboxer_engine.rb delete mode 100644 db/migrate/20140427171528_add_global_notification_support.mailboxer_engine.rb delete mode 100644 db/migrate/20140427171530_create_delayed_jobs.rb delete mode 100644 db/migrate/20140427171533_create_servers.rb delete mode 100644 db/migrate/20140427171537_create_matches.rb delete mode 100644 db/migrate/20140427171541_create_teams.rb delete mode 100644 db/migrate/20140427171545_create_alerts.rb delete mode 100644 db/migrate/20140427171548_create_pms.rb delete mode 100644 db/migrate/20140427171552_create_tournaments.rb delete mode 100644 db/migrate/20140427171556_create_games.rb delete mode 100644 db/migrate/20140427171600_create_users.rb delete mode 100644 db/migrate/20140427171603_create_sessions.rb delete mode 100644 db/migrate/20140427171607_create_brackets.rb delete mode 100644 db/migrate/20140427171611_create_game_settings.rb delete mode 100644 db/migrate/20140427171615_create_tournament_settings.rb delete mode 100644 db/migrate/20140427171618_create_tournament_stages.rb delete mode 100644 db/migrate/20140427171622_create_statistics.rb delete mode 100644 db/migrate/20140427171626_create_remote_usernames.rb delete mode 100644 db/migrate/20140427171629_create_bracket_matches.rb delete mode 100644 db/migrate/20140427171633_create_api_requests.rb delete mode 100644 db/migrate/20140427171637_create_tournament_players_join_table.rb delete mode 100644 db/migrate/20140427171640_create_tournament_hosts_join_table.rb delete mode 100644 db/migrate/20140427171644_create_team_user_join_table.rb delete mode 100644 db/migrate/20140427171647_create_match_team_join_table.rb delete mode 100644 db/migrate/20140427171658_add_hidden_attrs_to_user.rb create mode 100644 db/migrate/20140428092839_create_simple_captcha_data.rb create mode 100644 db/migrate/20140428132832_create_mailboxer.mailboxer_engine.rb create mode 100644 db/migrate/20140428132833_add_notified_object.mailboxer_engine.rb create mode 100644 db/migrate/20140428132834_add_notification_code.mailboxer_engine.rb create mode 100644 db/migrate/20140428132835_add_attachments.mailboxer_engine.rb create mode 100644 db/migrate/20140428132836_rename_receipts_read.mailboxer_engine.rb create mode 100644 db/migrate/20140428132837_add_global_notification_support.mailboxer_engine.rb create mode 100644 db/migrate/20140428132845_create_delayed_jobs.rb create mode 100644 db/migrate/20140428132852_create_servers.rb create mode 100644 db/migrate/20140428132900_create_matches.rb create mode 100644 db/migrate/20140428132907_create_teams.rb create mode 100644 db/migrate/20140428132914_create_alerts.rb create mode 100644 db/migrate/20140428132922_create_pms.rb create mode 100644 db/migrate/20140428132929_create_tournaments.rb create mode 100644 db/migrate/20140428132937_create_games.rb create mode 100644 db/migrate/20140428132944_create_users.rb create mode 100644 db/migrate/20140428132951_create_sessions.rb create mode 100644 db/migrate/20140428132958_create_brackets.rb create mode 100644 db/migrate/20140428133006_create_game_settings.rb create mode 100644 db/migrate/20140428133013_create_tournament_settings.rb create mode 100644 db/migrate/20140428133020_create_tournament_stages.rb create mode 100644 db/migrate/20140428133026_create_statistics.rb create mode 100644 db/migrate/20140428133033_create_remote_usernames.rb create mode 100644 db/migrate/20140428133041_create_bracket_matches.rb create mode 100644 db/migrate/20140428133048_create_api_requests.rb create mode 100644 db/migrate/20140428133055_create_tournament_players_join_table.rb create mode 100644 db/migrate/20140428133102_create_tournament_hosts_join_table.rb create mode 100644 db/migrate/20140428133109_create_team_user_join_table.rb create mode 100644 db/migrate/20140428133116_create_match_team_join_table.rb create mode 100644 db/migrate/20140428133136_add_hidden_attrs_to_user.rb diff --git a/app/controllers/games_controller.rb b/app/controllers/games_controller.rb index 55d16a0..27df771 100644 --- a/app/controllers/games_controller.rb +++ b/app/controllers/games_controller.rb @@ -69,6 +69,6 @@ class GamesController < ApplicationController # Never trust parameters from the scary internet, only allow the white list through. def game_params - params.require(:game).permit(:parent_id, :name, :min_players_per_team, :max_players_per_team, :min_teams_per_match, :max_teams_per_match, :sampling_method, :scoring_method) + params.require(:game).permit(:parent_id, :name, :min_players_per_team, :max_players_per_team, :min_teams_per_match, :max_teams_per_match, :scoring_method) end end diff --git a/app/controllers/tournaments_controller.rb b/app/controllers/tournaments_controller.rb index 1b84f82..51229cb 100644 --- a/app/controllers/tournaments_controller.rb +++ b/app/controllers/tournaments_controller.rb @@ -69,6 +69,6 @@ class TournamentsController < ApplicationController # Never trust parameters from the scary internet, only allow the white list through. def tournament_params - params.require(:tournament).permit(:game_id, :status, :name, :min_players_per_team, :max_players_per_team, :min_teams_per_match, :max_teams_per_match, :sampling_method, :scoring_method) + params.require(:tournament).permit(:game_id, :status, :name, :min_players_per_team, :max_players_per_team, :min_teams_per_match, :max_teams_per_match, :scoring_method) end end diff --git a/app/views/games/_form.html.erb b/app/views/games/_form.html.erb index e7def85..f796f87 100644 --- a/app/views/games/_form.html.erb +++ b/app/views/games/_form.html.erb @@ -35,10 +35,6 @@ <%= f.label :max_teams_per_match %>
<%= f.number_field :max_teams_per_match %> -
- <%= f.label :sampling_method %>
- <%= f.text_field :sampling_method %> -
<%= f.label :scoring_method %>
<%= f.text_field :scoring_method %> diff --git a/app/views/games/index.html.erb b/app/views/games/index.html.erb index 8c316de..71e59a0 100644 --- a/app/views/games/index.html.erb +++ b/app/views/games/index.html.erb @@ -9,7 +9,6 @@ Max players per team Min teams per match Max teams per match - Sampling method Scoring method @@ -26,7 +25,6 @@ <%= game.max_players_per_team %> <%= game.min_teams_per_match %> <%= game.max_teams_per_match %> - <%= game.sampling_method %> <%= game.scoring_method %> <%= link_to 'Show', game %> <%= link_to 'Edit', edit_game_path(game) %> diff --git a/app/views/games/index.json.jbuilder b/app/views/games/index.json.jbuilder index 0e9769b..d196201 100644 --- a/app/views/games/index.json.jbuilder +++ b/app/views/games/index.json.jbuilder @@ -1,4 +1,4 @@ json.array!(@games) do |game| - json.extract! game, :id, :parent_id, :name, :min_players_per_team, :max_players_per_team, :min_teams_per_match, :max_teams_per_match, :sampling_method, :scoring_method + json.extract! game, :id, :parent_id, :name, :min_players_per_team, :max_players_per_team, :min_teams_per_match, :max_teams_per_match, :scoring_method json.url game_url(game, format: :json) end diff --git a/app/views/games/show.html.erb b/app/views/games/show.html.erb index f132d9a..28da040 100644 --- a/app/views/games/show.html.erb +++ b/app/views/games/show.html.erb @@ -30,11 +30,6 @@ <%= @game.max_teams_per_match %>

-

- Sampling method: - <%= @game.sampling_method %> -

-

Scoring method: <%= @game.scoring_method %> diff --git a/app/views/games/show.json.jbuilder b/app/views/games/show.json.jbuilder index 981c31e..9a0dab6 100644 --- a/app/views/games/show.json.jbuilder +++ b/app/views/games/show.json.jbuilder @@ -1 +1 @@ -json.extract! @game, :id, :parent_id, :name, :min_players_per_team, :max_players_per_team, :min_teams_per_match, :max_teams_per_match, :sampling_method, :scoring_method, :created_at, :updated_at +json.extract! @game, :id, :parent_id, :name, :min_players_per_team, :max_players_per_team, :min_teams_per_match, :max_teams_per_match, :scoring_method, :created_at, :updated_at diff --git a/app/views/tournaments/_form.html.erb b/app/views/tournaments/_form.html.erb index be5cf56..340efab 100644 --- a/app/views/tournaments/_form.html.erb +++ b/app/views/tournaments/_form.html.erb @@ -39,10 +39,6 @@ <%= f.label :max_teams_per_match %>
<%= f.number_field :max_teams_per_match %>

-
- <%= f.label :sampling_method %>
- <%= f.text_field :sampling_method %> -
<%= f.label :scoring_method %>
<%= f.text_field :scoring_method %> diff --git a/app/views/tournaments/index.html.erb b/app/views/tournaments/index.html.erb index 1dddd5d..7bf8aa0 100644 --- a/app/views/tournaments/index.html.erb +++ b/app/views/tournaments/index.html.erb @@ -10,7 +10,6 @@ Max players per team Min teams per match Max teams per match - Sampling method Scoring method @@ -28,7 +27,6 @@ <%= tournament.max_players_per_team %> <%= tournament.min_teams_per_match %> <%= tournament.max_teams_per_match %> - <%= tournament.sampling_method %> <%= tournament.scoring_method %> <%= link_to 'Show', tournament %> <%= link_to 'Edit', edit_tournament_path(tournament) %> diff --git a/app/views/tournaments/index.json.jbuilder b/app/views/tournaments/index.json.jbuilder index c6b9e68..f92397f 100644 --- a/app/views/tournaments/index.json.jbuilder +++ b/app/views/tournaments/index.json.jbuilder @@ -1,4 +1,4 @@ json.array!(@tournaments) do |tournament| - json.extract! tournament, :id, :game_id, :status, :name, :min_players_per_team, :max_players_per_team, :min_teams_per_match, :max_teams_per_match, :sampling_method, :scoring_method + json.extract! tournament, :id, :game_id, :status, :name, :min_players_per_team, :max_players_per_team, :min_teams_per_match, :max_teams_per_match, :scoring_method json.url tournament_url(tournament, format: :json) end diff --git a/app/views/tournaments/show.html.erb b/app/views/tournaments/show.html.erb index f407295..ca65ac6 100644 --- a/app/views/tournaments/show.html.erb +++ b/app/views/tournaments/show.html.erb @@ -35,11 +35,6 @@ <%= @tournament.max_teams_per_match %>

-

- Sampling method: - <%= @tournament.sampling_method %> -

-

Scoring method: <%= @tournament.scoring_method %> diff --git a/app/views/tournaments/show.json.jbuilder b/app/views/tournaments/show.json.jbuilder index afc5814..888c6b2 100644 --- a/app/views/tournaments/show.json.jbuilder +++ b/app/views/tournaments/show.json.jbuilder @@ -1 +1 @@ -json.extract! @tournament, :id, :game_id, :status, :name, :min_players_per_team, :max_players_per_team, :min_teams_per_match, :max_teams_per_match, :sampling_method, :scoring_method, :created_at, :updated_at +json.extract! @tournament, :id, :game_id, :status, :name, :min_players_per_team, :max_players_per_team, :min_teams_per_match, :max_teams_per_match, :scoring_method, :created_at, :updated_at diff --git a/db/migrate/20140427131527_create_simple_captcha_data.rb b/db/migrate/20140427131527_create_simple_captcha_data.rb deleted file mode 100644 index 4573b20..0000000 --- a/db/migrate/20140427131527_create_simple_captcha_data.rb +++ /dev/null @@ -1,15 +0,0 @@ -class CreateSimpleCaptchaData < ActiveRecord::Migration - def self.up - create_table :simple_captcha_data do |t| - t.string :key, :limit => 40 - t.string :value, :limit => 6 - t.timestamps - end - - add_index :simple_captcha_data, :key, :name => "idx_key" - end - - def self.down - drop_table :simple_captcha_data - end -end diff --git a/db/migrate/20140427171523_create_mailboxer.mailboxer_engine.rb b/db/migrate/20140427171523_create_mailboxer.mailboxer_engine.rb deleted file mode 100644 index 690cec2..0000000 --- a/db/migrate/20140427171523_create_mailboxer.mailboxer_engine.rb +++ /dev/null @@ -1,62 +0,0 @@ -# This migration comes from mailboxer_engine (originally 20110511145103) -class CreateMailboxer < ActiveRecord::Migration - def self.up - #Tables - #Conversations - create_table :conversations do |t| - t.column :subject, :string, :default => "" - t.column :created_at, :datetime, :null => false - t.column :updated_at, :datetime, :null => false - end - #Receipts - create_table :receipts do |t| - t.references :receiver, :polymorphic => true - t.column :notification_id, :integer, :null => false - t.column :read, :boolean, :default => false - t.column :trashed, :boolean, :default => false - t.column :deleted, :boolean, :default => false - t.column :mailbox_type, :string, :limit => 25 - t.column :created_at, :datetime, :null => false - t.column :updated_at, :datetime, :null => false - end - #Notifications and Messages - create_table :notifications do |t| - t.column :type, :string - t.column :body, :text - t.column :subject, :string, :default => "" - t.references :sender, :polymorphic => true - t.references :object, :polymorphic => true - t.column :conversation_id, :integer - t.column :draft, :boolean, :default => false - t.column :updated_at, :datetime, :null => false - t.column :created_at, :datetime, :null => false - end - - - #Indexes - #Conversations - #Receipts - add_index "receipts","notification_id" - - #Messages - add_index "notifications","conversation_id" - - #Foreign keys - #Conversations - #Receipts - add_foreign_key "receipts", "notifications", :name => "receipts_on_notification_id" - #Messages - add_foreign_key "notifications", "conversations", :name => "notifications_on_conversation_id" - end - - def self.down - #Tables - remove_foreign_key "receipts", :name => "receipts_on_notification_id" - remove_foreign_key "notifications", :name => "notifications_on_conversation_id" - - #Indexes - drop_table :receipts - drop_table :conversations - drop_table :notifications - end -end diff --git a/db/migrate/20140427171524_add_notified_object.mailboxer_engine.rb b/db/migrate/20140427171524_add_notified_object.mailboxer_engine.rb deleted file mode 100644 index 7f41ac6..0000000 --- a/db/migrate/20140427171524_add_notified_object.mailboxer_engine.rb +++ /dev/null @@ -1,18 +0,0 @@ -# This migration comes from mailboxer_engine (originally 20110719110700) -class AddNotifiedObject < ActiveRecord::Migration - def self.up - change_table :notifications do |t| - t.references :notified_object, :polymorphic => true - t.remove :object_id - t.remove :object_type - end - end - - def self.down - change_table :notifications do |t| - t.remove :notified_object_id - t.remove :notified_object_type - t.references :object, :polymorphic => true - end - end -end diff --git a/db/migrate/20140427171525_add_notification_code.mailboxer_engine.rb b/db/migrate/20140427171525_add_notification_code.mailboxer_engine.rb deleted file mode 100644 index 04c12ef..0000000 --- a/db/migrate/20140427171525_add_notification_code.mailboxer_engine.rb +++ /dev/null @@ -1,14 +0,0 @@ -# This migration comes from mailboxer_engine (originally 20110912163911) -class AddNotificationCode < ActiveRecord::Migration - def self.up - change_table :notifications do |t| - t.string :notification_code, :default => nil - end - end - - def self.down - change_table :notifications do |t| - t.remove :notification_code - end - end -end \ No newline at end of file diff --git a/db/migrate/20140427171526_add_attachments.mailboxer_engine.rb b/db/migrate/20140427171526_add_attachments.mailboxer_engine.rb deleted file mode 100644 index b8d6588..0000000 --- a/db/migrate/20140427171526_add_attachments.mailboxer_engine.rb +++ /dev/null @@ -1,10 +0,0 @@ -# This migration comes from mailboxer_engine (originally 20111204163911) -class AddAttachments < ActiveRecord::Migration - def self.up - add_column :notifications, :attachment, :string - end - - def self.down - remove_column :notifications, :attachment - end -end diff --git a/db/migrate/20140427171527_rename_receipts_read.mailboxer_engine.rb b/db/migrate/20140427171527_rename_receipts_read.mailboxer_engine.rb deleted file mode 100644 index 9ce904f..0000000 --- a/db/migrate/20140427171527_rename_receipts_read.mailboxer_engine.rb +++ /dev/null @@ -1,10 +0,0 @@ -# This migration comes from mailboxer_engine (originally 20120813110712) -class RenameReceiptsRead < ActiveRecord::Migration - def up - rename_column :receipts, :read, :is_read - end - - def down - rename_column :receipts, :is_read, :read - end -end diff --git a/db/migrate/20140427171528_add_global_notification_support.mailboxer_engine.rb b/db/migrate/20140427171528_add_global_notification_support.mailboxer_engine.rb deleted file mode 100644 index 60f67ab..0000000 --- a/db/migrate/20140427171528_add_global_notification_support.mailboxer_engine.rb +++ /dev/null @@ -1,10 +0,0 @@ -# This migration comes from mailboxer_engine (originally 20130305144212) -class AddGlobalNotificationSupport < ActiveRecord::Migration - - def change - change_table :notifications do |t| - t.boolean :global, default: false - t.datetime :expires - end - end -end diff --git a/db/migrate/20140427171530_create_delayed_jobs.rb b/db/migrate/20140427171530_create_delayed_jobs.rb deleted file mode 100644 index ec0dd93..0000000 --- a/db/migrate/20140427171530_create_delayed_jobs.rb +++ /dev/null @@ -1,22 +0,0 @@ -class CreateDelayedJobs < ActiveRecord::Migration - def self.up - create_table :delayed_jobs, :force => true do |table| - table.integer :priority, :default => 0, :null => false # Allows some jobs to jump to the front of the queue - table.integer :attempts, :default => 0, :null => false # Provides for retries, but still fail eventually. - table.text :handler, :null => false # YAML-encoded string of the object that will do work - table.text :last_error # reason for last failure (See Note below) - table.datetime :run_at # When to run. Could be Time.zone.now for immediately, or sometime in the future. - table.datetime :locked_at # Set when a client is working on this object - table.datetime :failed_at # Set when all retries have failed (actually, by default, the record is deleted instead) - table.string :locked_by # Who is working on this object (if locked) - table.string :queue # The name of the queue this job is in - table.timestamps - end - - add_index :delayed_jobs, [:priority, :run_at], :name => 'delayed_jobs_priority' - end - - def self.down - drop_table :delayed_jobs - end -end diff --git a/db/migrate/20140427171533_create_servers.rb b/db/migrate/20140427171533_create_servers.rb deleted file mode 100644 index fbe1b02..0000000 --- a/db/migrate/20140427171533_create_servers.rb +++ /dev/null @@ -1,9 +0,0 @@ -class CreateServers < ActiveRecord::Migration - def change - create_table :servers do |t| - t.integer :default_user_permissions - - t.timestamps - end - end -end diff --git a/db/migrate/20140427171537_create_matches.rb b/db/migrate/20140427171537_create_matches.rb deleted file mode 100644 index bac92d1..0000000 --- a/db/migrate/20140427171537_create_matches.rb +++ /dev/null @@ -1,13 +0,0 @@ -class CreateMatches < ActiveRecord::Migration - def change - create_table :matches do |t| - t.integer :status - t.references :tournament_stage, index: true - t.references :winner, index: true - t.text :remote_id - t.integer :submitted_peer_evaluations - - t.timestamps - end - end -end diff --git a/db/migrate/20140427171541_create_teams.rb b/db/migrate/20140427171541_create_teams.rb deleted file mode 100644 index dd8397d..0000000 --- a/db/migrate/20140427171541_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/20140427171545_create_alerts.rb b/db/migrate/20140427171545_create_alerts.rb deleted file mode 100644 index 68a8e10..0000000 --- a/db/migrate/20140427171545_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/20140427171548_create_pms.rb b/db/migrate/20140427171548_create_pms.rb deleted file mode 100644 index eb9f443..0000000 --- a/db/migrate/20140427171548_create_pms.rb +++ /dev/null @@ -1,13 +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.text :subject - t.references :conversation, index: true - - t.timestamps - end - end -end diff --git a/db/migrate/20140427171552_create_tournaments.rb b/db/migrate/20140427171552_create_tournaments.rb deleted file mode 100644 index 8dae8f6..0000000 --- a/db/migrate/20140427171552_create_tournaments.rb +++ /dev/null @@ -1,18 +0,0 @@ -class CreateTournaments < ActiveRecord::Migration - def change - create_table :tournaments do |t| - t.references :game, index: true - t.integer :status - t.string :name - t.integer :min_players_per_team - t.integer :max_players_per_team - t.integer :min_teams_per_match - t.integer :max_teams_per_match - t.string :sampling_method - t.string :scoring_method - - t.timestamps - end - add_index :tournaments, :name, unique: true - end -end diff --git a/db/migrate/20140427171556_create_games.rb b/db/migrate/20140427171556_create_games.rb deleted file mode 100644 index d1b9511..0000000 --- a/db/migrate/20140427171556_create_games.rb +++ /dev/null @@ -1,17 +0,0 @@ -class CreateGames < ActiveRecord::Migration - def change - create_table :games do |t| - t.references :parent, index: true - t.string :name - t.integer :min_players_per_team - t.integer :max_players_per_team - t.integer :min_teams_per_match - t.integer :max_teams_per_match - t.string :sampling_method - t.string :scoring_method - - t.timestamps - end - add_index :games, :name, unique: true - end -end diff --git a/db/migrate/20140427171600_create_users.rb b/db/migrate/20140427171600_create_users.rb deleted file mode 100644 index 8032870..0000000 --- a/db/migrate/20140427171600_create_users.rb +++ /dev/null @@ -1,13 +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 - add_index :users, :email, unique: true - add_index :users, :user_name, unique: true - end -end diff --git a/db/migrate/20140427171603_create_sessions.rb b/db/migrate/20140427171603_create_sessions.rb deleted file mode 100644 index f667f1e..0000000 --- a/db/migrate/20140427171603_create_sessions.rb +++ /dev/null @@ -1,11 +0,0 @@ -class CreateSessions < ActiveRecord::Migration - def change - create_table :sessions do |t| - t.references :user, index: true - t.string :token - - t.timestamps - end - add_index :sessions, :token, unique: true - end -end diff --git a/db/migrate/20140427171607_create_brackets.rb b/db/migrate/20140427171607_create_brackets.rb deleted file mode 100644 index 8813bf2..0000000 --- a/db/migrate/20140427171607_create_brackets.rb +++ /dev/null @@ -1,11 +0,0 @@ -class CreateBrackets < ActiveRecord::Migration - def change - create_table :brackets do |t| - t.references :user, index: true - t.references :tournament, index: true - t.string :name - - t.timestamps - end - end -end diff --git a/db/migrate/20140427171611_create_game_settings.rb b/db/migrate/20140427171611_create_game_settings.rb deleted file mode 100644 index 06fb72e..0000000 --- a/db/migrate/20140427171611_create_game_settings.rb +++ /dev/null @@ -1,15 +0,0 @@ -class CreateGameSettings < ActiveRecord::Migration - def change - create_table :game_settings do |t| - t.references :game, index: true - t.string :name - t.integer :vartype - t.text :type_opt - t.text :description - t.integer :display_order - t.text :default - - t.timestamps - end - end -end diff --git a/db/migrate/20140427171615_create_tournament_settings.rb b/db/migrate/20140427171615_create_tournament_settings.rb deleted file mode 100644 index e56697f..0000000 --- a/db/migrate/20140427171615_create_tournament_settings.rb +++ /dev/null @@ -1,15 +0,0 @@ -class CreateTournamentSettings < ActiveRecord::Migration - def change - create_table :tournament_settings do |t| - t.references :tournament, index: true - t.string :name - t.integer :vartype - t.text :type_opt - t.text :description - t.integer :display_order - t.text :value - - t.timestamps - end - end -end diff --git a/db/migrate/20140427171618_create_tournament_stages.rb b/db/migrate/20140427171618_create_tournament_stages.rb deleted file mode 100644 index 6e52bf0..0000000 --- a/db/migrate/20140427171618_create_tournament_stages.rb +++ /dev/null @@ -1,12 +0,0 @@ -class CreateTournamentStages < ActiveRecord::Migration - def change - create_table :tournament_stages do |t| - t.references :tournament, index: true - t.text :structure - t.string :scheduling_method - t.string :seeding_method - - t.timestamps - end - end -end diff --git a/db/migrate/20140427171622_create_statistics.rb b/db/migrate/20140427171622_create_statistics.rb deleted file mode 100644 index cc2e97d..0000000 --- a/db/migrate/20140427171622_create_statistics.rb +++ /dev/null @@ -1,12 +0,0 @@ -class CreateStatistics < ActiveRecord::Migration - def change - create_table :statistics do |t| - t.references :user, index: true - t.references :match, index: true - t.string :name - t.integer :value - - t.timestamps - end - end -end diff --git a/db/migrate/20140427171626_create_remote_usernames.rb b/db/migrate/20140427171626_create_remote_usernames.rb deleted file mode 100644 index e265985..0000000 --- a/db/migrate/20140427171626_create_remote_usernames.rb +++ /dev/null @@ -1,11 +0,0 @@ -class CreateRemoteUsernames < ActiveRecord::Migration - def change - create_table :remote_usernames do |t| - t.references :game, index: true - t.references :user, index: true - t.text :json_value - - t.timestamps - end - end -end diff --git a/db/migrate/20140427171629_create_bracket_matches.rb b/db/migrate/20140427171629_create_bracket_matches.rb deleted file mode 100644 index 3323e31..0000000 --- a/db/migrate/20140427171629_create_bracket_matches.rb +++ /dev/null @@ -1,11 +0,0 @@ -class CreateBracketMatches < ActiveRecord::Migration - def change - create_table :bracket_matches do |t| - t.references :bracket, index: true - t.references :match, index: true - t.references :predicted_winner, index: true - - t.timestamps - end - end -end diff --git a/db/migrate/20140427171633_create_api_requests.rb b/db/migrate/20140427171633_create_api_requests.rb deleted file mode 100644 index 544c330..0000000 --- a/db/migrate/20140427171633_create_api_requests.rb +++ /dev/null @@ -1,9 +0,0 @@ -class CreateApiRequests < ActiveRecord::Migration - def change - create_table :api_requests do |t| - t.string :api_name - - t.timestamps - end - end -end diff --git a/db/migrate/20140427171637_create_tournament_players_join_table.rb b/db/migrate/20140427171637_create_tournament_players_join_table.rb deleted file mode 100644 index be240e8..0000000 --- a/db/migrate/20140427171637_create_tournament_players_join_table.rb +++ /dev/null @@ -1,8 +0,0 @@ -class CreateTournamentPlayersJoinTable < ActiveRecord::Migration - def change - create_join_table :players, :tournaments do |t| - # t.index [:player_id, :tournament_id] - # t.index [:tournament_id, :player_id] - end - end -end diff --git a/db/migrate/20140427171640_create_tournament_hosts_join_table.rb b/db/migrate/20140427171640_create_tournament_hosts_join_table.rb deleted file mode 100644 index 7521d89..0000000 --- a/db/migrate/20140427171640_create_tournament_hosts_join_table.rb +++ /dev/null @@ -1,8 +0,0 @@ -class CreateTournamentHostsJoinTable < ActiveRecord::Migration - def change - create_join_table :hosts, :tournaments do |t| - # t.index [:host_id, :tournament_id] - # t.index [:tournament_id, :host_id] - end - end -end diff --git a/db/migrate/20140427171644_create_team_user_join_table.rb b/db/migrate/20140427171644_create_team_user_join_table.rb deleted file mode 100644 index f3b57fc..0000000 --- a/db/migrate/20140427171644_create_team_user_join_table.rb +++ /dev/null @@ -1,8 +0,0 @@ -class CreateTeamUserJoinTable < ActiveRecord::Migration - def change - create_join_table :teams, :users do |t| - # t.index [:team_id, :user_id] - # t.index [:user_id, :team_id] - end - end -end diff --git a/db/migrate/20140427171647_create_match_team_join_table.rb b/db/migrate/20140427171647_create_match_team_join_table.rb deleted file mode 100644 index c2ed1b7..0000000 --- a/db/migrate/20140427171647_create_match_team_join_table.rb +++ /dev/null @@ -1,8 +0,0 @@ -class CreateMatchTeamJoinTable < ActiveRecord::Migration - def change - create_join_table :matches, :teams do |t| - # t.index [:match_id, :team_id] - # t.index [:team_id, :match_id] - end - end -end diff --git a/db/migrate/20140427171658_add_hidden_attrs_to_user.rb b/db/migrate/20140427171658_add_hidden_attrs_to_user.rb deleted file mode 100644 index 9b5c505..0000000 --- a/db/migrate/20140427171658_add_hidden_attrs_to_user.rb +++ /dev/null @@ -1,6 +0,0 @@ -class AddHiddenAttrsToUser < ActiveRecord::Migration - def change - add_column :users, :password_digest, :string - add_column :users, :permissions, :integer - end -end diff --git a/db/migrate/20140428092839_create_simple_captcha_data.rb b/db/migrate/20140428092839_create_simple_captcha_data.rb new file mode 100644 index 0000000..4573b20 --- /dev/null +++ b/db/migrate/20140428092839_create_simple_captcha_data.rb @@ -0,0 +1,15 @@ +class CreateSimpleCaptchaData < ActiveRecord::Migration + def self.up + create_table :simple_captcha_data do |t| + t.string :key, :limit => 40 + t.string :value, :limit => 6 + t.timestamps + end + + add_index :simple_captcha_data, :key, :name => "idx_key" + end + + def self.down + drop_table :simple_captcha_data + end +end diff --git a/db/migrate/20140428132832_create_mailboxer.mailboxer_engine.rb b/db/migrate/20140428132832_create_mailboxer.mailboxer_engine.rb new file mode 100644 index 0000000..690cec2 --- /dev/null +++ b/db/migrate/20140428132832_create_mailboxer.mailboxer_engine.rb @@ -0,0 +1,62 @@ +# This migration comes from mailboxer_engine (originally 20110511145103) +class CreateMailboxer < ActiveRecord::Migration + def self.up + #Tables + #Conversations + create_table :conversations do |t| + t.column :subject, :string, :default => "" + t.column :created_at, :datetime, :null => false + t.column :updated_at, :datetime, :null => false + end + #Receipts + create_table :receipts do |t| + t.references :receiver, :polymorphic => true + t.column :notification_id, :integer, :null => false + t.column :read, :boolean, :default => false + t.column :trashed, :boolean, :default => false + t.column :deleted, :boolean, :default => false + t.column :mailbox_type, :string, :limit => 25 + t.column :created_at, :datetime, :null => false + t.column :updated_at, :datetime, :null => false + end + #Notifications and Messages + create_table :notifications do |t| + t.column :type, :string + t.column :body, :text + t.column :subject, :string, :default => "" + t.references :sender, :polymorphic => true + t.references :object, :polymorphic => true + t.column :conversation_id, :integer + t.column :draft, :boolean, :default => false + t.column :updated_at, :datetime, :null => false + t.column :created_at, :datetime, :null => false + end + + + #Indexes + #Conversations + #Receipts + add_index "receipts","notification_id" + + #Messages + add_index "notifications","conversation_id" + + #Foreign keys + #Conversations + #Receipts + add_foreign_key "receipts", "notifications", :name => "receipts_on_notification_id" + #Messages + add_foreign_key "notifications", "conversations", :name => "notifications_on_conversation_id" + end + + def self.down + #Tables + remove_foreign_key "receipts", :name => "receipts_on_notification_id" + remove_foreign_key "notifications", :name => "notifications_on_conversation_id" + + #Indexes + drop_table :receipts + drop_table :conversations + drop_table :notifications + end +end diff --git a/db/migrate/20140428132833_add_notified_object.mailboxer_engine.rb b/db/migrate/20140428132833_add_notified_object.mailboxer_engine.rb new file mode 100644 index 0000000..7f41ac6 --- /dev/null +++ b/db/migrate/20140428132833_add_notified_object.mailboxer_engine.rb @@ -0,0 +1,18 @@ +# This migration comes from mailboxer_engine (originally 20110719110700) +class AddNotifiedObject < ActiveRecord::Migration + def self.up + change_table :notifications do |t| + t.references :notified_object, :polymorphic => true + t.remove :object_id + t.remove :object_type + end + end + + def self.down + change_table :notifications do |t| + t.remove :notified_object_id + t.remove :notified_object_type + t.references :object, :polymorphic => true + end + end +end diff --git a/db/migrate/20140428132834_add_notification_code.mailboxer_engine.rb b/db/migrate/20140428132834_add_notification_code.mailboxer_engine.rb new file mode 100644 index 0000000..04c12ef --- /dev/null +++ b/db/migrate/20140428132834_add_notification_code.mailboxer_engine.rb @@ -0,0 +1,14 @@ +# This migration comes from mailboxer_engine (originally 20110912163911) +class AddNotificationCode < ActiveRecord::Migration + def self.up + change_table :notifications do |t| + t.string :notification_code, :default => nil + end + end + + def self.down + change_table :notifications do |t| + t.remove :notification_code + end + end +end \ No newline at end of file diff --git a/db/migrate/20140428132835_add_attachments.mailboxer_engine.rb b/db/migrate/20140428132835_add_attachments.mailboxer_engine.rb new file mode 100644 index 0000000..b8d6588 --- /dev/null +++ b/db/migrate/20140428132835_add_attachments.mailboxer_engine.rb @@ -0,0 +1,10 @@ +# This migration comes from mailboxer_engine (originally 20111204163911) +class AddAttachments < ActiveRecord::Migration + def self.up + add_column :notifications, :attachment, :string + end + + def self.down + remove_column :notifications, :attachment + end +end diff --git a/db/migrate/20140428132836_rename_receipts_read.mailboxer_engine.rb b/db/migrate/20140428132836_rename_receipts_read.mailboxer_engine.rb new file mode 100644 index 0000000..9ce904f --- /dev/null +++ b/db/migrate/20140428132836_rename_receipts_read.mailboxer_engine.rb @@ -0,0 +1,10 @@ +# This migration comes from mailboxer_engine (originally 20120813110712) +class RenameReceiptsRead < ActiveRecord::Migration + def up + rename_column :receipts, :read, :is_read + end + + def down + rename_column :receipts, :is_read, :read + end +end diff --git a/db/migrate/20140428132837_add_global_notification_support.mailboxer_engine.rb b/db/migrate/20140428132837_add_global_notification_support.mailboxer_engine.rb new file mode 100644 index 0000000..60f67ab --- /dev/null +++ b/db/migrate/20140428132837_add_global_notification_support.mailboxer_engine.rb @@ -0,0 +1,10 @@ +# This migration comes from mailboxer_engine (originally 20130305144212) +class AddGlobalNotificationSupport < ActiveRecord::Migration + + def change + change_table :notifications do |t| + t.boolean :global, default: false + t.datetime :expires + end + end +end diff --git a/db/migrate/20140428132845_create_delayed_jobs.rb b/db/migrate/20140428132845_create_delayed_jobs.rb new file mode 100644 index 0000000..ec0dd93 --- /dev/null +++ b/db/migrate/20140428132845_create_delayed_jobs.rb @@ -0,0 +1,22 @@ +class CreateDelayedJobs < ActiveRecord::Migration + def self.up + create_table :delayed_jobs, :force => true do |table| + table.integer :priority, :default => 0, :null => false # Allows some jobs to jump to the front of the queue + table.integer :attempts, :default => 0, :null => false # Provides for retries, but still fail eventually. + table.text :handler, :null => false # YAML-encoded string of the object that will do work + table.text :last_error # reason for last failure (See Note below) + table.datetime :run_at # When to run. Could be Time.zone.now for immediately, or sometime in the future. + table.datetime :locked_at # Set when a client is working on this object + table.datetime :failed_at # Set when all retries have failed (actually, by default, the record is deleted instead) + table.string :locked_by # Who is working on this object (if locked) + table.string :queue # The name of the queue this job is in + table.timestamps + end + + add_index :delayed_jobs, [:priority, :run_at], :name => 'delayed_jobs_priority' + end + + def self.down + drop_table :delayed_jobs + end +end diff --git a/db/migrate/20140428132852_create_servers.rb b/db/migrate/20140428132852_create_servers.rb new file mode 100644 index 0000000..fbe1b02 --- /dev/null +++ b/db/migrate/20140428132852_create_servers.rb @@ -0,0 +1,9 @@ +class CreateServers < ActiveRecord::Migration + def change + create_table :servers do |t| + t.integer :default_user_permissions + + t.timestamps + end + end +end diff --git a/db/migrate/20140428132900_create_matches.rb b/db/migrate/20140428132900_create_matches.rb new file mode 100644 index 0000000..bac92d1 --- /dev/null +++ b/db/migrate/20140428132900_create_matches.rb @@ -0,0 +1,13 @@ +class CreateMatches < ActiveRecord::Migration + def change + create_table :matches do |t| + t.integer :status + t.references :tournament_stage, index: true + t.references :winner, index: true + t.text :remote_id + t.integer :submitted_peer_evaluations + + t.timestamps + end + end +end diff --git a/db/migrate/20140428132907_create_teams.rb b/db/migrate/20140428132907_create_teams.rb new file mode 100644 index 0000000..dd8397d --- /dev/null +++ b/db/migrate/20140428132907_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/20140428132914_create_alerts.rb b/db/migrate/20140428132914_create_alerts.rb new file mode 100644 index 0000000..68a8e10 --- /dev/null +++ b/db/migrate/20140428132914_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/20140428132922_create_pms.rb b/db/migrate/20140428132922_create_pms.rb new file mode 100644 index 0000000..eb9f443 --- /dev/null +++ b/db/migrate/20140428132922_create_pms.rb @@ -0,0 +1,13 @@ +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.text :subject + t.references :conversation, index: true + + t.timestamps + end + end +end diff --git a/db/migrate/20140428132929_create_tournaments.rb b/db/migrate/20140428132929_create_tournaments.rb new file mode 100644 index 0000000..f3715bb --- /dev/null +++ b/db/migrate/20140428132929_create_tournaments.rb @@ -0,0 +1,17 @@ +class CreateTournaments < ActiveRecord::Migration + def change + create_table :tournaments do |t| + t.references :game, index: true + t.integer :status + t.string :name + t.integer :min_players_per_team + t.integer :max_players_per_team + t.integer :min_teams_per_match + t.integer :max_teams_per_match + t.string :scoring_method + + t.timestamps + end + add_index :tournaments, :name, unique: true + end +end diff --git a/db/migrate/20140428132937_create_games.rb b/db/migrate/20140428132937_create_games.rb new file mode 100644 index 0000000..e841667 --- /dev/null +++ b/db/migrate/20140428132937_create_games.rb @@ -0,0 +1,16 @@ +class CreateGames < ActiveRecord::Migration + def change + create_table :games do |t| + t.references :parent, index: true + t.string :name + t.integer :min_players_per_team + t.integer :max_players_per_team + t.integer :min_teams_per_match + t.integer :max_teams_per_match + t.string :scoring_method + + t.timestamps + end + add_index :games, :name, unique: true + end +end diff --git a/db/migrate/20140428132944_create_users.rb b/db/migrate/20140428132944_create_users.rb new file mode 100644 index 0000000..8032870 --- /dev/null +++ b/db/migrate/20140428132944_create_users.rb @@ -0,0 +1,13 @@ +class CreateUsers < ActiveRecord::Migration + def change + create_table :users do |t| + t.string :name + t.string :email + t.string :user_name + + t.timestamps + end + add_index :users, :email, unique: true + add_index :users, :user_name, unique: true + end +end diff --git a/db/migrate/20140428132951_create_sessions.rb b/db/migrate/20140428132951_create_sessions.rb new file mode 100644 index 0000000..f667f1e --- /dev/null +++ b/db/migrate/20140428132951_create_sessions.rb @@ -0,0 +1,11 @@ +class CreateSessions < ActiveRecord::Migration + def change + create_table :sessions do |t| + t.references :user, index: true + t.string :token + + t.timestamps + end + add_index :sessions, :token, unique: true + end +end diff --git a/db/migrate/20140428132958_create_brackets.rb b/db/migrate/20140428132958_create_brackets.rb new file mode 100644 index 0000000..8813bf2 --- /dev/null +++ b/db/migrate/20140428132958_create_brackets.rb @@ -0,0 +1,11 @@ +class CreateBrackets < ActiveRecord::Migration + def change + create_table :brackets do |t| + t.references :user, index: true + t.references :tournament, index: true + t.string :name + + t.timestamps + end + end +end diff --git a/db/migrate/20140428133006_create_game_settings.rb b/db/migrate/20140428133006_create_game_settings.rb new file mode 100644 index 0000000..06fb72e --- /dev/null +++ b/db/migrate/20140428133006_create_game_settings.rb @@ -0,0 +1,15 @@ +class CreateGameSettings < ActiveRecord::Migration + def change + create_table :game_settings do |t| + t.references :game, index: true + t.string :name + t.integer :vartype + t.text :type_opt + t.text :description + t.integer :display_order + t.text :default + + t.timestamps + end + end +end diff --git a/db/migrate/20140428133013_create_tournament_settings.rb b/db/migrate/20140428133013_create_tournament_settings.rb new file mode 100644 index 0000000..e56697f --- /dev/null +++ b/db/migrate/20140428133013_create_tournament_settings.rb @@ -0,0 +1,15 @@ +class CreateTournamentSettings < ActiveRecord::Migration + def change + create_table :tournament_settings do |t| + t.references :tournament, index: true + t.string :name + t.integer :vartype + t.text :type_opt + t.text :description + t.integer :display_order + t.text :value + + t.timestamps + end + end +end diff --git a/db/migrate/20140428133020_create_tournament_stages.rb b/db/migrate/20140428133020_create_tournament_stages.rb new file mode 100644 index 0000000..6e52bf0 --- /dev/null +++ b/db/migrate/20140428133020_create_tournament_stages.rb @@ -0,0 +1,12 @@ +class CreateTournamentStages < ActiveRecord::Migration + def change + create_table :tournament_stages do |t| + t.references :tournament, index: true + t.text :structure + t.string :scheduling_method + t.string :seeding_method + + t.timestamps + end + end +end diff --git a/db/migrate/20140428133026_create_statistics.rb b/db/migrate/20140428133026_create_statistics.rb new file mode 100644 index 0000000..cc2e97d --- /dev/null +++ b/db/migrate/20140428133026_create_statistics.rb @@ -0,0 +1,12 @@ +class CreateStatistics < ActiveRecord::Migration + def change + create_table :statistics do |t| + t.references :user, index: true + t.references :match, index: true + t.string :name + t.integer :value + + t.timestamps + end + end +end diff --git a/db/migrate/20140428133033_create_remote_usernames.rb b/db/migrate/20140428133033_create_remote_usernames.rb new file mode 100644 index 0000000..e265985 --- /dev/null +++ b/db/migrate/20140428133033_create_remote_usernames.rb @@ -0,0 +1,11 @@ +class CreateRemoteUsernames < ActiveRecord::Migration + def change + create_table :remote_usernames do |t| + t.references :game, index: true + t.references :user, index: true + t.text :json_value + + t.timestamps + end + end +end diff --git a/db/migrate/20140428133041_create_bracket_matches.rb b/db/migrate/20140428133041_create_bracket_matches.rb new file mode 100644 index 0000000..3323e31 --- /dev/null +++ b/db/migrate/20140428133041_create_bracket_matches.rb @@ -0,0 +1,11 @@ +class CreateBracketMatches < ActiveRecord::Migration + def change + create_table :bracket_matches do |t| + t.references :bracket, index: true + t.references :match, index: true + t.references :predicted_winner, index: true + + t.timestamps + end + end +end diff --git a/db/migrate/20140428133048_create_api_requests.rb b/db/migrate/20140428133048_create_api_requests.rb new file mode 100644 index 0000000..544c330 --- /dev/null +++ b/db/migrate/20140428133048_create_api_requests.rb @@ -0,0 +1,9 @@ +class CreateApiRequests < ActiveRecord::Migration + def change + create_table :api_requests do |t| + t.string :api_name + + t.timestamps + end + end +end diff --git a/db/migrate/20140428133055_create_tournament_players_join_table.rb b/db/migrate/20140428133055_create_tournament_players_join_table.rb new file mode 100644 index 0000000..be240e8 --- /dev/null +++ b/db/migrate/20140428133055_create_tournament_players_join_table.rb @@ -0,0 +1,8 @@ +class CreateTournamentPlayersJoinTable < ActiveRecord::Migration + def change + create_join_table :players, :tournaments do |t| + # t.index [:player_id, :tournament_id] + # t.index [:tournament_id, :player_id] + end + end +end diff --git a/db/migrate/20140428133102_create_tournament_hosts_join_table.rb b/db/migrate/20140428133102_create_tournament_hosts_join_table.rb new file mode 100644 index 0000000..7521d89 --- /dev/null +++ b/db/migrate/20140428133102_create_tournament_hosts_join_table.rb @@ -0,0 +1,8 @@ +class CreateTournamentHostsJoinTable < ActiveRecord::Migration + def change + create_join_table :hosts, :tournaments do |t| + # t.index [:host_id, :tournament_id] + # t.index [:tournament_id, :host_id] + end + end +end diff --git a/db/migrate/20140428133109_create_team_user_join_table.rb b/db/migrate/20140428133109_create_team_user_join_table.rb new file mode 100644 index 0000000..f3b57fc --- /dev/null +++ b/db/migrate/20140428133109_create_team_user_join_table.rb @@ -0,0 +1,8 @@ +class CreateTeamUserJoinTable < ActiveRecord::Migration + def change + create_join_table :teams, :users do |t| + # t.index [:team_id, :user_id] + # t.index [:user_id, :team_id] + end + end +end diff --git a/db/migrate/20140428133116_create_match_team_join_table.rb b/db/migrate/20140428133116_create_match_team_join_table.rb new file mode 100644 index 0000000..c2ed1b7 --- /dev/null +++ b/db/migrate/20140428133116_create_match_team_join_table.rb @@ -0,0 +1,8 @@ +class CreateMatchTeamJoinTable < ActiveRecord::Migration + def change + create_join_table :matches, :teams do |t| + # t.index [:match_id, :team_id] + # t.index [:team_id, :match_id] + end + end +end diff --git a/db/migrate/20140428133136_add_hidden_attrs_to_user.rb b/db/migrate/20140428133136_add_hidden_attrs_to_user.rb new file mode 100644 index 0000000..9b5c505 --- /dev/null +++ b/db/migrate/20140428133136_add_hidden_attrs_to_user.rb @@ -0,0 +1,6 @@ +class AddHiddenAttrsToUser < ActiveRecord::Migration + def change + add_column :users, :password_digest, :string + add_column :users, :permissions, :integer + end +end diff --git a/db/schema.rb b/db/schema.rb index b3284b9..a7910eb 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -11,7 +11,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 20140427171658) do +ActiveRecord::Schema.define(version: 20140428133136) do create_table "alerts", force: true do |t| t.integer "author_id" @@ -94,7 +94,6 @@ ActiveRecord::Schema.define(version: 20140427171658) do t.integer "max_players_per_team" t.integer "min_teams_per_match" t.integer "max_teams_per_match" - t.string "sampling_method" t.string "scoring_method" t.datetime "created_at" t.datetime "updated_at" @@ -270,7 +269,6 @@ ActiveRecord::Schema.define(version: 20140427171658) do t.integer "max_players_per_team" t.integer "min_teams_per_match" t.integer "max_teams_per_match" - t.string "sampling_method" t.string "scoring_method" t.datetime "created_at" t.datetime "updated_at" diff --git a/test/controllers/games_controller_test.rb b/test/controllers/games_controller_test.rb index b86fe7a..1a457ba 100644 --- a/test/controllers/games_controller_test.rb +++ b/test/controllers/games_controller_test.rb @@ -18,7 +18,7 @@ class GamesControllerTest < ActionController::TestCase test "should create game" do assert_difference('Game.count') do - post :create, game: { max_players_per_team: @game.max_players_per_team, max_teams_per_match: @game.max_teams_per_match, min_players_per_team: @game.min_players_per_team, min_teams_per_match: @game.min_teams_per_match, name: @game.name, parent_id: @game.parent_id, sampling_method: @game.sampling_method, scoring_method: @game.scoring_method } + post :create, game: { max_players_per_team: @game.max_players_per_team, max_teams_per_match: @game.max_teams_per_match, min_players_per_team: @game.min_players_per_team, min_teams_per_match: @game.min_teams_per_match, name: @game.name, parent_id: @game.parent_id, scoring_method: @game.scoring_method } end assert_redirected_to game_path(assigns(:game)) @@ -35,7 +35,7 @@ class GamesControllerTest < ActionController::TestCase end test "should update game" do - patch :update, id: @game, game: { max_players_per_team: @game.max_players_per_team, max_teams_per_match: @game.max_teams_per_match, min_players_per_team: @game.min_players_per_team, min_teams_per_match: @game.min_teams_per_match, name: @game.name, parent_id: @game.parent_id, sampling_method: @game.sampling_method, scoring_method: @game.scoring_method } + patch :update, id: @game, game: { max_players_per_team: @game.max_players_per_team, max_teams_per_match: @game.max_teams_per_match, min_players_per_team: @game.min_players_per_team, min_teams_per_match: @game.min_teams_per_match, name: @game.name, parent_id: @game.parent_id, scoring_method: @game.scoring_method } assert_redirected_to game_path(assigns(:game)) end diff --git a/test/controllers/tournaments_controller_test.rb b/test/controllers/tournaments_controller_test.rb index 5639150..7ef5590 100644 --- a/test/controllers/tournaments_controller_test.rb +++ b/test/controllers/tournaments_controller_test.rb @@ -18,7 +18,7 @@ class TournamentsControllerTest < ActionController::TestCase test "should create tournament" do assert_difference('Tournament.count') do - post :create, tournament: { game_id: @tournament.game_id, max_players_per_team: @tournament.max_players_per_team, max_teams_per_match: @tournament.max_teams_per_match, min_players_per_team: @tournament.min_players_per_team, min_teams_per_match: @tournament.min_teams_per_match, name: @tournament.name, sampling_method: @tournament.sampling_method, scoring_method: @tournament.scoring_method, status: @tournament.status } + post :create, tournament: { game_id: @tournament.game_id, max_players_per_team: @tournament.max_players_per_team, max_teams_per_match: @tournament.max_teams_per_match, min_players_per_team: @tournament.min_players_per_team, min_teams_per_match: @tournament.min_teams_per_match, name: @tournament.name, scoring_method: @tournament.scoring_method, status: @tournament.status } end assert_redirected_to tournament_path(assigns(:tournament)) @@ -35,7 +35,7 @@ class TournamentsControllerTest < ActionController::TestCase end test "should update tournament" do - patch :update, id: @tournament, tournament: { game_id: @tournament.game_id, max_players_per_team: @tournament.max_players_per_team, max_teams_per_match: @tournament.max_teams_per_match, min_players_per_team: @tournament.min_players_per_team, min_teams_per_match: @tournament.min_teams_per_match, name: @tournament.name, sampling_method: @tournament.sampling_method, scoring_method: @tournament.scoring_method, status: @tournament.status } + patch :update, id: @tournament, tournament: { game_id: @tournament.game_id, max_players_per_team: @tournament.max_players_per_team, max_teams_per_match: @tournament.max_teams_per_match, min_players_per_team: @tournament.min_players_per_team, min_teams_per_match: @tournament.min_teams_per_match, name: @tournament.name, scoring_method: @tournament.scoring_method, status: @tournament.status } assert_redirected_to tournament_path(assigns(:tournament)) end diff --git a/test/fixtures/games.yml b/test/fixtures/games.yml index f6d8a2e..bdb9cb5 100644 --- a/test/fixtures/games.yml +++ b/test/fixtures/games.yml @@ -7,7 +7,6 @@ one: max_players_per_team: 1 min_teams_per_match: 1 max_teams_per_match: 1 - sampling_method: MyString scoring_method: MyString two: @@ -17,5 +16,4 @@ two: max_players_per_team: 1 min_teams_per_match: 1 max_teams_per_match: 1 - sampling_method: MyString scoring_method: MyString diff --git a/test/fixtures/tournaments.yml b/test/fixtures/tournaments.yml index d975b1d..4691b8a 100644 --- a/test/fixtures/tournaments.yml +++ b/test/fixtures/tournaments.yml @@ -8,7 +8,6 @@ one: max_players_per_team: 1 min_teams_per_match: 1 max_teams_per_match: 1 - sampling_method: MyString scoring_method: MyString two: @@ -19,5 +18,4 @@ two: max_players_per_team: 1 min_teams_per_match: 1 max_teams_per_match: 1 - sampling_method: MyString scoring_method: MyString -- cgit v1.2.3