diff options
Diffstat (limited to 'db/migrate/20130205102838_create_backup_jobs.rb')
-rw-r--r-- | db/migrate/20130205102838_create_backup_jobs.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/db/migrate/20130205102838_create_backup_jobs.rb b/db/migrate/20130205102838_create_backup_jobs.rb new file mode 100644 index 0000000..0d71421 --- /dev/null +++ b/db/migrate/20130205102838_create_backup_jobs.rb @@ -0,0 +1,16 @@ +class CreateBackupJobs < ActiveRecord::Migration + def self.up + create_table :backup_jobs do |t| + t.datetime :started_at + t.datetime :finished_at + t.string :state + t.string :directory + t.string :size_of_the_backup + t.timestamps + end + end + + def self.down + drop_table :backup_jobs + end +end |