discourse/db/migrate/20240531053226_create_user_required_fields_version.rb
Ted Johansson d63f1826fe
FEATURE: User fields required for existing users - Part 2 (#27172)
We want to allow admins to make new required fields apply to existing users. In order for this to work we need to have a way to make those users fill up the fields on their next page load. This is very similar to how adding a 2FA requirement post-fact works. Users will be redirected to a page where they can fill up the remaining required fields, and until they do that they won't be able to do anything else.
2024-06-25 19:32:18 +08:00

12 lines
276 B
Ruby

# frozen_string_literal: true
class CreateUserRequiredFieldsVersion < ActiveRecord::Migration[7.0]
def change
create_table :user_required_fields_versions do |t|
t.timestamps null: false
end
add_column :users, :required_fields_version, :integer
end
end