summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-03-05 21:36:34 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-03-05 21:36:34 -0500
commit91e8c1366f101837519b7dd1e5fa7b53473eb97b (patch)
tree92d86e4458d8a380129e370835e3ddf8d5a00dee /db/schema.rb
parent11b6cab4a9a7d14e6b58c6a16f471aabaa42247f (diff)
parentf72b55ce938a14313091a92d84c4083c3ba4f2fd (diff)
Merge branch 'clean'
Conflicts: app/controllers/users_controller.rb app/views/users/show.json.jbuilder db/migrate/20140306014123_add_index_to_users_email.rb db/migrate/20140306014125_add_index_to_users_user_name.rb db/migrate/20140306014128_add_password_digest_to_users.rb db/migrate/20140306014130_add_remember_token_to_users.rb db/schema.rb
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/db/schema.rb b/db/schema.rb
index f2e9136..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,14 +122,13 @@ ActiveRecord::Schema.define(version: 20140306014132) do
t.string "name"
t.string "email"
t.string "user_name"
- t.datetime "created_at"
- t.datetime "updated_at"
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", ["remember_token"], name: "index_users_on_remember_token"
add_index "users", ["user_name"], name: "index_users_on_user_name", unique: true
end