Skip to content

Instantly share code, notes, and snippets.

@GAierken
Created February 3, 2020 17:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GAierken/16749ef667819a864ed4d2e606e22e45 to your computer and use it in GitHub Desktop.
Save GAierken/16749ef667819a864ed4d2e606e22e45 to your computer and use it in GitHub Desktop.
ActiveRecord::Schema.define(version: 2020_01_30_155454) do
enable_extension "plpgsql"
create_table "appointments", force: :cascade do |t|
t.integer "client_id"
t.integer "provider_id"
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 "password_digest"
t.string "username"
t.string "address"
t.boolean "board_certified"
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment