diff options
author | Julian Pawlowski <julian.pawlowski@gmail.com> | 2013-02-26 11:30:52 +0100 |
---|---|---|
committer | Julian Pawlowski <julian.pawlowski@gmail.com> | 2013-02-26 11:30:52 +0100 |
commit | 7c7b788d0d1aa1abe63b3506c4ced555de157fd5 (patch) | |
tree | b19e0056c97eccb910dd8c3c7df9ce76c0c2e47a /db/migrate/20130225160423_create_restore_jobs.rb | |
parent | 6c2ba1352010ef4c63b2dad1e90ab8b4366b0195 (diff) | |
parent | ececfdf24075dd4e2794734a07187750b1b33e13 (diff) |
Merge branches 'develop' and 'develop' of https://github.com/amooma/GS5 into develop
Diffstat (limited to 'db/migrate/20130225160423_create_restore_jobs.rb')
-rw-r--r-- | db/migrate/20130225160423_create_restore_jobs.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/db/migrate/20130225160423_create_restore_jobs.rb b/db/migrate/20130225160423_create_restore_jobs.rb new file mode 100644 index 0000000..9f83791 --- /dev/null +++ b/db/migrate/20130225160423_create_restore_jobs.rb @@ -0,0 +1,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 |