demarches-normaliennes/db/migrate/20221104071959_add_team_account_to_users.rb

7 lines
184 B
Ruby
Raw Normal View History

class AddTeamAccountToUsers < ActiveRecord::Migration[6.1]
def change
add_column :users, :team_account, :boolean
change_column_default :users, :team_account, false
end
end