Skip to content

Commit

Permalink
Fix(schema): Revert schema to prev. version. No db changes in PR.
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisma committed Mar 18, 2019
1 parent 72a56f0 commit a289fcf
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "vsphere_root_folder", default: ""
t.string "puppet_init_path", default: "/"
t.string "puppet_classes_path", default: "/Name"
t.string "puppet_nodes_path", default: "/Node"
t.string "puppet_init_path"
t.string "puppet_classes_path"
t.string "puppet_nodes_path"
t.integer "min_cpu_cores"
t.integer "max_cpu_cores"
t.integer "max_ram_size"
Expand Down Expand Up @@ -161,12 +161,12 @@
t.string "current_sign_in_ip"
t.string "last_sign_in_ip"
t.integer "role"
t.string "provider"
t.string "uid"
t.string "ssh_key"
t.string "first_name"
t.string "last_name"
t.string "provider"
t.string "uid"
t.integer "user_id"
t.string "ssh_key"
t.boolean "email_notifications", default: false
t.index ["email"], name: "index_users_on_email", unique: true
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
Expand All @@ -178,8 +178,6 @@
t.integer "user_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["request_id"], name: "index_users_assigned_to_requests_on_request_id"
t.index ["user_id"], name: "index_users_assigned_to_requests_on_user_id"
end

create_table "users_virtual_machine_configs", id: false, force: :cascade do |t|
Expand Down

0 comments on commit a289fcf

Please sign in to comment.