diff options
Diffstat (limited to 'db/schema.rb')
| -rw-r--r-- | db/schema.rb | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index d62cc41..d7219a5 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: 20150207194524) do +ActiveRecord::Schema.define(version: 20150221192553) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" @@ -47,4 +47,11 @@ ActiveRecord::Schema.define(version: 20150207194524) do t.datetime "updated_at", null: false end + create_table "users", force: :cascade do |t| + t.string "username" + t.string "password_digest" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end + end |
