summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authorguntasgrewal <guntasgrewal@gmail.com>2014-03-25 16:12:18 -0400
committerguntasgrewal <guntasgrewal@gmail.com>2014-03-25 16:12:18 -0400
commitecef4973baed5580e3b2500ce0a65def1132d172 (patch)
tree5590167b74523db62ff6bb17b07fb04a400d9044 /db/schema.rb
parentc1f714a479eb7ca9e9125e283361a471dd928278 (diff)
Changes to generate.sh
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb12
1 files changed, 9 insertions, 3 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 55f4046..0394946 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: 20140307052443) do
+ActiveRecord::Schema.define(version: 20140325201109) do
create_table "alerts", force: true do |t|
t.integer "author_id"
@@ -22,14 +22,20 @@ ActiveRecord::Schema.define(version: 20140307052443) do
add_index "alerts", ["author_id"], name: "index_alerts_on_author_id"
- create_table "game_options", force: true do |t|
- t.integer "vartype"
+ create_table "game_settings", force: true do |t|
+ t.integer "game_id"
+ t.integer "type"
t.string "name"
t.text "default"
+ t.text "discription"
+ t.text "type_opt"
+ t.integer "display_order"
t.datetime "created_at"
t.datetime "updated_at"
end
+ add_index "game_settings", ["game_id"], name: "index_game_settings_on_game_id"
+
create_table "games", force: true do |t|
t.text "name"
t.integer "min_players_per_team"