diff options
author | francis <francis> | 2008-11-05 18:19:46 +0000 |
---|---|---|
committer | francis <francis> | 2008-11-05 18:19:46 +0000 |
commit | f1a2a5f272f4bb29cb12f11e709599bd2443b60e (patch) | |
tree | 6b051abf0b59ad004eca94b8aa75f53e8d07b5ce /db/schema.rb | |
parent | 569ce862d752fb506072d8a54787455ffd76237e (diff) |
Lots of the code for internal review state.
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index e33f36c38..dd0a70937 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 => 68) do +ActiveRecord::Schema.define(:version => 69) do create_table "acts_as_xapian_jobs", :force => true do |t| t.string "model", :null => false @@ -93,8 +93,11 @@ ActiveRecord::Schema.define(:version => 68) do t.datetime "updated_at", :null => false t.datetime "last_sent_at" t.integer "incoming_message_followup_id" + t.string "what_doing", :null => false end + add_index "outgoing_messages", ["what_doing"], :name => "index_outgoing_messages_on_what_doing" + create_table "post_redirects", :force => true do |t| t.text "token", :null => false t.text "uri", :null => false |