mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-10-31 20:14:26 +00:00
12 lines
279 B
Ruby
12 lines
279 B
Ruby
|
class CreateBackups < ActiveRecord::Migration[5.1]
|
||
|
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
|