summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authortkimia <tkimia@purdue.edu>2014-04-03 18:03:33 -0400
committertkimia <tkimia@purdue.edu>2014-04-03 18:03:33 -0400
commit36e6db5e8fbcbeeddb6a68d702bb8a2bdc3a514a (patch)
tree2cf6a72fce43f4644dc16177a4d42fb778fb8c97 /db
parenteffe4608e808a385bb912fccac26381d0bd0c95a (diff)
parent91623c4f865d25c33ed64632ae61b506e0bb1ab4 (diff)
Merge branch 'master' of https://github.com/LukeShu/leaguer
Diffstat (limited to 'db')
-rw-r--r--db/schema.rb11
1 files changed, 10 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 113f16d..30ac1af 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: 20140403155049) do
+ActiveRecord::Schema.define(version: 20140403171427) do
create_table "alerts", force: true do |t|
t.integer "author_id"
@@ -129,6 +129,15 @@ ActiveRecord::Schema.define(version: 20140403155049) do
add_index "sessions", ["token"], name: "index_sessions_on_token", unique: true
add_index "sessions", ["user_id"], name: "index_sessions_on_user_id"
+ create_table "simple_captcha_data", force: true do |t|
+ t.string "key", limit: 40
+ t.string "value", limit: 6
+ t.datetime "created_at"
+ t.datetime "updated_at"
+ end
+
+ add_index "simple_captcha_data", ["key"], name: "idx_key"
+
create_table "teams", force: true do |t|
t.integer "match_id"
t.datetime "created_at"