mirror of
https://github.com/mastodon/mastodon.git
synced 2026-05-03 16:03:51 +00:00
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
|