summaryrefslogtreecommitdiff
path: root/db/schema.rb
diff options
context:
space:
mode:
authorStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-02-06 16:03:43 +0100
committerStefan Wintermeyer <stefan.wintermeyer@amooma.de>2013-02-06 16:04:14 +0100
commit07d49f54067cfb8666f650323c7ffefe1e860b24 (patch)
tree14bfe30adfed7c389975c5d6bfe759c031285d73 /db/schema.rb
parent87c71a3b6f33d28b03a8bde95cc3f921400dc8ae (diff)
Use CarrierWave to store the backup file.
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb23
1 files changed, 22 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 5d4b5e3..5e51305 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -11,7 +11,7 @@
#
# It's strongly recommended to check this file into your version control system.
-ActiveRecord::Schema.define(:version => 20130202140927) do
+ActiveRecord::Schema.define(:version => 20130206144829) do
create_table "access_authorizations", :force => true do |t|
t.string "access_authorizationable_type"
@@ -124,6 +124,26 @@ ActiveRecord::Schema.define(:version => 20130202140927) do
t.string "music"
end
+ create_table "backup_jobs", :force => true do |t|
+ t.datetime "started_at"
+ t.datetime "finished_at"
+ t.string "state"
+ t.string "directory"
+ t.integer "size_of_the_backup"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ t.string "backup_file"
+ end
+
+ create_table "backups", :force => true do |t|
+ t.datetime "start_at"
+ t.datetime "end_at"
+ t.string "directory"
+ t.string "size"
+ t.datetime "created_at", :null => false
+ t.datetime "updated_at", :null => false
+ end
+
create_table "call_forward_cases", :force => true do |t|
t.string "value"
t.datetime "created_at", :null => false
@@ -358,6 +378,7 @@ ActiveRecord::Schema.define(:version => 20130202140927) do
t.string "locked_by"
t.datetime "created_at", :null => false
t.datetime "updated_at", :null => false
+ t.string "queue"
end
add_index "delayed_jobs", ["priority", "run_at"], :name => "delayed_jobs_priority"