This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
|
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
|