summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index e700a4a..ca583d1 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: 20140306014132) do
+ActiveRecord::Schema.define(version: 20140306022702) do
create_table "alerts", force: true do |t|
t.integer "author_id"
@@ -122,8 +122,13 @@ ActiveRecord::Schema.define(version: 20140306014132) 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"
end
+ add_index "users", ["email"], name: "index_users_on_email", unique: true
+ add_index "users", ["user_name"], name: "index_users_on_user_name", unique: true
+
end