Files
api/db/old/20260128000003_add_role_and_name_to_users.rb
T
Jason Jordan 9853d58469
CI / scan_ruby (push) Failing after 2m13s
CI / lint (push) Failing after 20s
Its been a while
2026-07-23 10:41:46 -04:00

10 lines
289 B
Ruby

class AddRoleAndNameToUsers < ActiveRecord::Migration[7.2]
def change
# add_column :users, :role, :integer, default: 0, null: false
# add_column :users, :role_id, :integer, null: false
# add_column :users, :name, :string, null: false
# add_index :users, :role
end
end