diff options
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index 6f2579f..5fc0f94 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,11 +10,19 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 2021_04_22_014607) do +ActiveRecord::Schema.define(version: 2021_05_02_200959) do # These are extensions that must be enabled in order to support this database enable_extension "plpgsql" + create_table "skills", force: :cascade do |t| + t.string "gid" + t.string "name" + t.text "description" + t.datetime "created_at", precision: 6, null: false + t.datetime "updated_at", precision: 6, null: false + end + create_table "users", force: :cascade do |t| t.string "email", default: "", null: false t.string "encrypted_password", default: "", null: false |