2024-04-29 00:17:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-11-04 10:39:06 +01:00
|
|
|
class AddTeamAccountToUsers < ActiveRecord::Migration[6.1]
|
|
|
|
def change
|
|
|
|
add_column :users, :team_account, :boolean
|
|
|
|
change_column_default :users, :team_account, false
|
|
|
|
end
|
|
|
|
end
|