6 lines
184 B
Ruby
6 lines
184 B
Ruby
class AddTeamAccountToUsers < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :users, :team_account, :boolean
|
|
change_column_default :users, :team_account, false
|
|
end
|
|
end
|