0
0
Fork 0

Increase max backup size (#12602)

* Increased max backup size

* partially reverted schema.rb
This commit is contained in:
scd31 2019-12-17 12:30:58 +00:00 committed by Eugen Rochko
parent 0aaedcd66f
commit 3830c0b741
3 changed files with 12 additions and 27 deletions

View file

@ -0,0 +1,9 @@
class IncreaseBackupSize < ActiveRecord::Migration[5.2]
def up
change_column :backups, :dump_file_size, :bigint
end
def down
change_column :backups, :dump_file_size, :integer
end
end