Skip to content

Commit

Permalink
feat(db): run migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
castrolem committed Aug 15, 2019
1 parent 15e0de1 commit b2f0b33
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit b2f0b33

Please sign in to comment.