Class: AddUsersCountToIdentityProvidersAndEnterpriseAccounts

Inherits:
Object
  • Object
show all
Defined in:
lib/osso/db/migrate/20200929154117_add_users_count_to_identity_providers_and_enterprise_accounts.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
# File 'lib/osso/db/migrate/20200929154117_add_users_count_to_identity_providers_and_enterprise_accounts.rb', line 2

def change
  add_column :enterprise_accounts, :users_count, :integer, default: 0
  add_column :identity_providers, :users_count, :integer, default: 0
end