6 lines
153 B
Ruby
6 lines
153 B
Ruby
class ChangeFeeCentsToBigint < ActiveRecord::Migration[6.0]
|
|
def change
|
|
change_column :contract_templates, :fee_cents, :integer, limit: 8
|
|
end
|
|
end
|