mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
3830c0b741
* Increased max backup size * partially reverted schema.rb
10 lines
200 B
Ruby
10 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
|