Initial commit
This commit is contained in:
9
db/migrate/20210218135634_change_owner_id_requirement.rb
Normal file
9
db/migrate/20210218135634_change_owner_id_requirement.rb
Normal file
@@ -0,0 +1,9 @@
|
||||
class ChangeOwnerIdRequirement < ActiveRecord::Migration[5.2]
|
||||
def up
|
||||
change_column :service_accounts, :owner_id, :bigint, null: true, unsigned: true
|
||||
end
|
||||
|
||||
def down
|
||||
change_column :service_accounts, :owner_id, :bigint, null: false, unsigned: true
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user