summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2021-05-02 16:15:55 -0400
committerDavid Gay <david@davidgay.org>2021-05-02 16:15:55 -0400
commit7997e112fbc67eef309bb3969ad41f90a8bfbc89 (patch)
tree6da48af487ae581365fcc0d6d8fa6894e3724506 /db/schema.rb
parent2b3422be0a68b18125bb471bef7adcc32cd3b486 (diff)
Add skills
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb10
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