mirror of
https://github.com/kikobar/mastodon.git
synced 2024-11-19 05:37:42 +00: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
|