diff --git a/db/schema.rb b/db/schema.rb index eca63ca2..2aea3902 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,10 +10,20 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema.define(version: 2019_08_15_075544) do +ActiveRecord::Schema.define(version: 2019_08_15_082234) do # These are extensions that must be enabled in order to support this database enable_extension "pgcrypto" enable_extension "plpgsql" + create_table "users", id: :uuid, default: -> { "gen_random_uuid()" }, force: :cascade do |t| + t.string "first_name" + t.string "last_name" + t.string "email" + t.string "user_role" + t.string "discourse_id" + t.datetime "created_at", precision: 6, null: false + t.datetime "updated_at", precision: 6, null: false + end + end