1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-28 06:48:45 +09:00
YuruToot/db/migrate/20180211015820_create_backups.rb

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