mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-04 14:04:39 +00:00
12 lines
279 B
Ruby
12 lines
279 B
Ruby
class CreateBackups < ActiveRecord::Migration[5.2]
|
|
def change
|
|
create_table :backups do |t|
|
|
t.references :user, foreign_key: { on_delete: :nullify }
|
|
t.attachment :dump
|
|
t.boolean :processed, null: false, default: false
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|