Skip to content

Commit

Permalink
removing our schema change for the test deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
brwali committed Nov 1, 2024
1 parent 47b0827 commit 43faca5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 12 deletions.

This file was deleted.

8 changes: 4 additions & 4 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
ActiveRecord::Schema.define(version: 20241009142307) do

create_table "account_requests", id: :integer, force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=latin1" do |t|
t.string "username"
t.integer "role_id"
t.string "name"
t.integer "role_id"
t.string "fullname"
t.string "institution_id"
t.string "email"
t.string "status"
Expand Down Expand Up @@ -973,11 +973,11 @@
end

create_table "users", id: :integer, force: :cascade, options: "ENGINE=InnoDB DEFAULT CHARSET=utf8mb3" do |t|
t.string "username", default: "", null: false
t.string "name", default: "", null: false
t.string "crypted_password", limit: 40, default: "", null: false
t.integer "role_id", default: 0, null: false
t.string "password_salt"
t.string "name"
t.string "fullname"
t.string "email"
t.integer "parent_id"
t.boolean "private_by_default", default: false
Expand Down

0 comments on commit 43faca5

Please sign in to comment.