Upstream sync
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
class AddFileIdToVideoReleaseConfirmations < ActiveRecord::Migration[6.0]
|
||||
def up
|
||||
add_column :video_release_confirmations, :file_id, :bigint, index: true
|
||||
end
|
||||
|
||||
def down
|
||||
remove_column :video_release_confirmations, :file_id
|
||||
end
|
||||
end
|
||||
7
db/migrate/20200914163203_convert_fee_to_string_type.rb
Normal file
7
db/migrate/20200914163203_convert_fee_to_string_type.rb
Normal file
@@ -0,0 +1,7 @@
|
||||
class ConvertFeeToStringType < ActiveRecord::Migration[6.0]
|
||||
def change
|
||||
rename_column :contract_templates, :fee_cents, :fee_old_cents
|
||||
rename_column :contract_templates, :fee_currency, :fee_old_currency
|
||||
add_column :contract_templates, :fee, :string
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user