Browse Source

CLDC-1050: fixed ethnic group flow

CLDC-1050: fix ethnicity flow
pull/408/head
kiddhustle 3 years ago
parent
commit
53df4e4200
  1. 3
      .gitignore
  2. 2
      config/forms/2021_2022.json
  3. 2
      db/schema.rb

3
.gitignore vendored

@ -4,6 +4,9 @@
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile '~/.gitignore_global'
# generated files
db.schema.rb
# Ignore bundler config.
/.bundle

2
config/forms/2021_2022.json

@ -1457,7 +1457,7 @@
},
"depends_on": [
{
"ethnic": 0
"ethnic_group": 0
}
]
},

2
db/schema.rb

@ -281,10 +281,10 @@ ActiveRecord::Schema[7.0].define(version: 202202071123100) do
t.string "last_sign_in_ip"
t.integer "role"
t.string "old_user_id"
t.string "phone"
t.integer "failed_attempts", default: 0
t.string "unlock_token"
t.datetime "locked_at", precision: nil
t.string "phone"
t.index ["email"], name: "index_users_on_email", unique: true
t.index ["organisation_id"], name: "index_users_on_organisation_id"
t.index ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true

Loading…
Cancel
Save