aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb15
1 files changed, 14 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index aee7dbd..9fcf580 100644
--- a/db/schema.rb
+++ b/db/schema.rb
@@ -9,7 +9,7 @@
#
# It's strongly recommended to check this file into your version control system.
-ActiveRecord::Schema.define(:version => 20100811164808) do
+ActiveRecord::Schema.define(:version => 20101005121508) do
create_table "answers", :force => true do |t|
t.text "content", :default => "", :null => false
@@ -39,6 +39,19 @@ ActiveRecord::Schema.define(:version => 20100811164808) do
add_index "comments", ["answer_id"], :name => "index_comments_on_answer_id"
add_index "comments", ["owner_id"], :name => "index_comments_on_owner_id"
+ create_table "delayed_jobs", :force => true do |t|
+ t.integer "priority", :default => 0
+ t.integer "attempts", :default => 0
+ t.text "handler"
+ t.string "last_error"
+ t.datetime "run_at"
+ t.datetime "locked_at"
+ t.datetime "failed_at"
+ t.string "locked_by"
+ t.datetime "created_at"
+ t.datetime "updated_at"
+ end
+
create_table "options", :force => true do |t|
t.string "content", :null => false
t.datetime "created_at"