diff options
author | francis <francis> | 2008-10-27 18:18:29 +0000 |
---|---|---|
committer | francis <francis> | 2008-10-27 18:18:29 +0000 |
commit | 083693f0edb27b7e281e4d5469e901fd72125642 (patch) | |
tree | 493efc716f6cb10a174c7b62285b55ec75ebb05d /db/schema.rb | |
parent | 52e145fd3928d9c17a2f1b06c076ea075b289297 (diff) |
Code to flexibly remove text from requests, configured via database.
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index 6939d7c41..e33f36c38 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 => 67) do +ActiveRecord::Schema.define(:version => 68) do create_table "acts_as_xapian_jobs", :force => true do |t| t.string "model", :null => false @@ -19,6 +19,18 @@ ActiveRecord::Schema.define(:version => 67) do add_index "acts_as_xapian_jobs", ["model", "model_id"], :name => "index_acts_as_xapian_jobs_on_model_and_model_id", :unique => true + create_table "censor_rules", :force => true do |t| + t.integer "info_request_id" + t.integer "user_id" + t.integer "public_body_id" + t.text "text", :null => false + t.text "replacement", :null => false + t.string "last_edit_editor", :null => false + t.text "last_edit_comment", :null => false + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false + end + create_table "comments", :force => true do |t| t.integer "user_id", :null => false t.string "comment_type", :default => "internal_error", :null => false |