aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorJoachim Filip Ignacy Bartosik <jbartosik@gmail.com>2010-12-11 15:26:49 +0100
committerJoachim Filip Ignacy Bartosik <jbartosik@gmail.com>2010-12-15 18:14:10 +0100
commit40abc60951ef779ee02ee4f21018a85168d1ae67 (patch)
tree73b42d94c320c3bf55c2ce35f69704bb07b58979 /app
parentLoad Mail::Message customization automatically (diff)
downloadrecruiting-webapp-40abc60951ef779ee02ee4f21018a85168d1ae67.tar.gz
recruiting-webapp-40abc60951ef779ee02ee4f21018a85168d1ae67.tar.bz2
recruiting-webapp-40abc60951ef779ee02ee4f21018a85168d1ae67.zip
Start tracking migrations
Migrations are useful for applications that are working, so we shall track them. Includes initial migrations. Removes app/models/job.rb because it caused problems for hobo_migration generator.
Diffstat (limited to 'app')
-rw-r--r--app/models/job.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/app/models/job.rb b/app/models/job.rb
deleted file mode 100644
index 7afa6f7..0000000
--- a/app/models/job.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-# Don't use this class.
-#
-# Only purpose of this class is to let hobo_migration generator know that it
-# should create delayed_jobs table.
-class Job < ActiveRecord::Base
- set_table_name "delayed_jobs"
- fields do
- priority :integer, :default => 0
- attempts :integer, :default => 0
- handler :text
- last_error :string
- run_at :datetime
- locked_at :datetime
- failed_at :datetime
- locked_by :string
- timestamps
- end
-end