summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorDavisLWebb <davislwebb@ymail.com>2014-03-02 15:59:50 -0500
committerDavisLWebb <davislwebb@ymail.com>2014-03-02 15:59:50 -0500
commiteaf3d3cddf418c560c9619f722ea1dbc5d6cc61a (patch)
tree85d2e147a410ae528425595282aa4d7235152df8 /db
parentb677983475513c78108406901fccd5cbe9604ca6 (diff)
currently adding Session controller and view
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20140304020217_create_servers.rb8
-rw-r--r--db/migrate/20140304020219_create_tournaments.rb9
-rw-r--r--db/migrate/20140304020221_create_matches.rb9
-rw-r--r--db/migrate/20140304020224_create_teams.rb8
-rw-r--r--db/migrate/20140304020230_create_users.rb11
-rw-r--r--db/migrate/20140304020233_create_user_team_pairs.rb10
-rw-r--r--db/migrate/20140304020235_create_team_match_pairs.rb10
-rw-r--r--db/migrate/20140304020237_create_alerts.rb10
-rw-r--r--db/migrate/20140304020239_create_pms.rb11
-rw-r--r--db/migrate/20140304020242_create_games.rb13
-rw-r--r--db/migrate/20140304020244_create_game_attributes.rb11
-rw-r--r--db/migrate/20140304020246_create_server_settings.rb8
-rw-r--r--db/migrate/20140304020255_create_tournament_options.rb8
-rw-r--r--db/schema.rb120
14 files changed, 246 insertions, 0 deletions
diff --git a/db/migrate/20140304020217_create_servers.rb b/db/migrate/20140304020217_create_servers.rb
new file mode 100644
index 0000000..f33241a
--- /dev/null
+++ b/db/migrate/20140304020217_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/20140304020219_create_tournaments.rb b/db/migrate/20140304020219_create_tournaments.rb
new file mode 100644
index 0000000..36fcf7e
--- /dev/null
+++ b/db/migrate/20140304020219_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/20140304020221_create_matches.rb b/db/migrate/20140304020221_create_matches.rb
new file mode 100644
index 0000000..6c0c157
--- /dev/null
+++ b/db/migrate/20140304020221_create_matches.rb
@@ -0,0 +1,9 @@
+class CreateMatches < ActiveRecord::Migration
+ def change
+ create_table :matches do |t|
+ t.references :tournament, index: true
+
+ t.timestamps
+ end
+ end
+end
diff --git a/db/migrate/20140304020224_create_teams.rb b/db/migrate/20140304020224_create_teams.rb
new file mode 100644
index 0000000..dd8397d
--- /dev/null
+++ b/db/migrate/20140304020224_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/20140304020230_create_users.rb b/db/migrate/20140304020230_create_users.rb
new file mode 100644
index 0000000..f0986d4
--- /dev/null
+++ b/db/migrate/20140304020230_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/20140304020233_create_user_team_pairs.rb b/db/migrate/20140304020233_create_user_team_pairs.rb
new file mode 100644
index 0000000..2c492ac
--- /dev/null
+++ b/db/migrate/20140304020233_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/20140304020235_create_team_match_pairs.rb b/db/migrate/20140304020235_create_team_match_pairs.rb
new file mode 100644
index 0000000..8fac07e
--- /dev/null
+++ b/db/migrate/20140304020235_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/20140304020237_create_alerts.rb b/db/migrate/20140304020237_create_alerts.rb
new file mode 100644
index 0000000..68a8e10
--- /dev/null
+++ b/db/migrate/20140304020237_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/20140304020239_create_pms.rb b/db/migrate/20140304020239_create_pms.rb
new file mode 100644
index 0000000..93bb5c6
--- /dev/null
+++ b/db/migrate/20140304020239_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/20140304020242_create_games.rb b/db/migrate/20140304020242_create_games.rb
new file mode 100644
index 0000000..59d4ef0
--- /dev/null
+++ b/db/migrate/20140304020242_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/20140304020244_create_game_attributes.rb b/db/migrate/20140304020244_create_game_attributes.rb
new file mode 100644
index 0000000..b63f134
--- /dev/null
+++ b/db/migrate/20140304020244_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/20140304020246_create_server_settings.rb b/db/migrate/20140304020246_create_server_settings.rb
new file mode 100644
index 0000000..dfdd91b
--- /dev/null
+++ b/db/migrate/20140304020246_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/20140304020255_create_tournament_options.rb b/db/migrate/20140304020255_create_tournament_options.rb
new file mode 100644
index 0000000..d2df22e
--- /dev/null
+++ b/db/migrate/20140304020255_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
diff --git a/db/schema.rb b/db/schema.rb
new file mode 100644
index 0000000..016476d
--- /dev/null
+++ b/db/schema.rb
@@ -0,0 +1,120 @@
+# encoding: UTF-8
+# This file is auto-generated from the current state of the database. Instead
+# of editing this file, please use the migrations feature of Active Record to
+# incrementally modify your database, and then regenerate this schema definition.
+#
+# Note that this schema.rb definition is the authoritative source for your
+# database schema. If you need to create the application database on another
+# system, you should be using db:schema:load, not running all the migrations
+# from scratch. The latter is a flawed and unsustainable approach (the more migrations
+# you'll amass, the slower it'll run and the greater likelihood for issues).
+#
+# It's strongly recommended that you check this file into your version control system.
+
+ActiveRecord::Schema.define(version: 20140304020255) do
+
+ create_table "alerts", force: true do |t|
+ t.integer "author_id"
+ t.text "message"
+ t.datetime "created_at"
+ t.datetime "updated_at"
+ end
+
+ add_index "alerts", ["author_id"], name: "index_alerts_on_author_id"
+
+ create_table "game_attributes", force: true do |t|
+ t.integer "game_id"
+ t.text "key"
+ t.integer "type"
+ t.datetime "created_at"
+ t.datetime "updated_at"
+ end
+
+ add_index "game_attributes", ["game_id"], name: "index_game_attributes_on_game_id"
+
+ create_table "games", force: true do |t|
+ t.text "name"
+ t.integer "players_per_team"
+ t.integer "teams_per_match"
+ t.integer "set_rounds"
+ t.integer "randomized_teams"
+ t.datetime "created_at"
+ t.datetime "updated_at"
+ end
+
+ create_table "matches", force: true do |t|
+ t.integer "tournament_id"
+ t.datetime "created_at"
+ t.datetime "updated_at"
+ end
+
+ add_index "matches", ["tournament_id"], name: "index_matches_on_tournament_id"
+
+ create_table "pms", force: true do |t|
+ t.integer "author_id"
+ t.integer "recipient_id"
+ t.text "message"
+ t.datetime "created_at"
+ t.datetime "updated_at"
+ end
+
+ add_index "pms", ["author_id"], name: "index_pms_on_author_id"
+ add_index "pms", ["recipient_id"], name: "index_pms_on_recipient_id"
+
+ create_table "server_settings", force: true do |t|
+ t.datetime "created_at"
+ t.datetime "updated_at"
+ end
+
+ create_table "servers", force: true do |t|
+ t.datetime "created_at"
+ t.datetime "updated_at"
+ end
+
+ create_table "team_match_pairs", force: true do |t|
+ t.integer "team_id"
+ t.integer "match_id"
+ t.datetime "created_at"
+ t.datetime "updated_at"
+ end
+
+ add_index "team_match_pairs", ["match_id"], name: "index_team_match_pairs_on_match_id"
+ add_index "team_match_pairs", ["team_id"], name: "index_team_match_pairs_on_team_id"
+
+ create_table "teams", force: true do |t|
+ t.datetime "created_at"
+ t.datetime "updated_at"
+ end
+
+ create_table "tournament_options", force: true do |t|
+ t.datetime "created_at"
+ t.datetime "updated_at"
+ end
+
+ create_table "tournaments", force: true do |t|
+ t.integer "game_id"
+ t.datetime "created_at"
+ t.datetime "updated_at"
+ end
+
+ add_index "tournaments", ["game_id"], name: "index_tournaments_on_game_id"
+
+ create_table "user_team_pairs", force: true do |t|
+ t.integer "user_id"
+ t.integer "team_id"
+ t.datetime "created_at"
+ t.datetime "updated_at"
+ end
+
+ add_index "user_team_pairs", ["team_id"], name: "index_user_team_pairs_on_team_id"
+ add_index "user_team_pairs", ["user_id"], name: "index_user_team_pairs_on_user_id"
+
+ create_table "users", force: true do |t|
+ t.string "name"
+ t.string "email"
+ t.string "user_name"
+ t.datetime "created_at"
+ t.datetime "updated_at"
+ end
+
+end