diff options
| author | mo khan <mo@mokhan.ca> | 2015-02-21 12:31:50 -0700 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2015-02-21 12:31:50 -0700 |
| commit | 6ada62adfd2b60e3af4f721ed8e09a5658920fa6 (patch) | |
| tree | 1f65086944ce3be9b12b48bda16761fde6a6b965 /db/schema.rb | |
| parent | d3f91de6fcc6d27bc2d7adb8f1e14d73b71e7b96 (diff) | |
add user model and login page.
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 |
