From f72b55ce938a14313091a92d84c4083c3ba4f2fd Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Wed, 5 Mar 2014 21:28:25 -0500 Subject: move the separate migrations into the original generates --- db/schema.rb | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'db/schema.rb') 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 -- cgit v1.2.3-54-g00ecf