Increase max backup size (#12602)
* Increased max backup size * partially reverted schema.rb
This commit is contained in:
parent
0aaedcd66f
commit
3830c0b741
3 changed files with 12 additions and 27 deletions
9
db/migrate/20191212003415_increase_backup_size.rb
Normal file
9
db/migrate/20191212003415_increase_backup_size.rb
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue