diff options
author | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2013-02-06 16:03:43 +0100 |
---|---|---|
committer | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2013-02-06 16:04:14 +0100 |
commit | 07d49f54067cfb8666f650323c7ffefe1e860b24 (patch) | |
tree | 14bfe30adfed7c389975c5d6bfe759c031285d73 /db/migrate | |
parent | 87c71a3b6f33d28b03a8bde95cc3f921400dc8ae (diff) |
Use CarrierWave to store the backup file.
Diffstat (limited to 'db/migrate')
-rw-r--r-- | db/migrate/20130206144829_add_backup_file_to_backup_job.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20130206144829_add_backup_file_to_backup_job.rb b/db/migrate/20130206144829_add_backup_file_to_backup_job.rb new file mode 100644 index 0000000..e02f2b3 --- /dev/null +++ b/db/migrate/20130206144829_add_backup_file_to_backup_job.rb @@ -0,0 +1,5 @@ +class AddBackupFileToBackupJob < ActiveRecord::Migration + def change + add_column :backup_jobs, :backup_file, :string + end +end |