mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-23 13:28:07 +01:00
3830c0b741
* Increased max backup size * partially reverted schema.rb
9 lines
200 B
Ruby
9 lines
200 B
Ruby
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
|