summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-03-05 21:48:54 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-03-05 21:48:54 -0500
commitd0545c2820d101a98b3c895cf6e3691145a62f3c (patch)
treeb3bdb78ab94b2929c9bb7fdb2f6f257e58edc93e /db/schema.rb
parentf72b55ce938a14313091a92d84c4083c3ba4f2fd (diff)
use separate migrations to make things hidden, add user#groups:integer
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/db/schema.rb b/db/schema.rb
index ca583d1..b0d0766 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: 20140306022702) do
+ActiveRecord::Schema.define(version: 20140306024744) do
create_table "alerts", force: true do |t|
t.integer "author_id"
@@ -122,13 +122,15 @@ ActiveRecord::Schema.define(version: 20140306022702) do
t.string "name"
t.string "email"
t.string "user_name"
- t.string "password_digest"
- t.string "remember_token"
t.datetime "created_at"
t.datetime "updated_at"
+ t.string "password_digest"
+ t.string "remember_token"
+ t.integer "groups"
end
add_index "users", ["email"], name: "index_users_on_email", unique: true
+ add_index "users", ["remember_token"], name: "index_users_on_remember_token", unique: true
add_index "users", ["user_name"], name: "index_users_on_user_name", unique: true
end