blob: 9f83791d09d5e33b763533a8e17dea70f5fbaa53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
class CreateRestoreJobs < ActiveRecord::Migration
def self.up
create_table :restore_jobs do |t|
t.string :state
t.string :backup_file
t.timestamps
end
end
def self.down
drop_table :restore_jobs
end
end
|