about summary refs log tree commit diff
path: root/db/migrate/20180211015820_create_backups.rb
blob: 9725a3e9f37ae164ae84f280070cc2dce9c0a383 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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