You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
360 B
10 lines
360 B
class AddMissingExportFields < ActiveRecord::Migration[7.0] |
|
def change |
|
change_table :logs_exports, bulk: true do |t| |
|
t.column :base_number, :integer, default: 1, null: false |
|
t.column :increment_number, :integer, default: 1, null: false |
|
t.remove :daily_run_number, type: :integer |
|
t.change_null :started_at, false |
|
end |
|
end |
|
end
|
|
|