aboutsummaryrefslogtreecommitdiffstats
path: root/db/schema.rb
diff options
context:
space:
mode:
authorfrancis <francis>2009-03-09 01:17:04 +0000
committerfrancis <francis>2009-03-09 01:17:04 +0000
commitd9352a1b382008de35457e15b03346e873b3b229 (patch)
tree27e07c75f6cf53764f6e615ae9759a6765223064 /db/schema.rb
parent0ba2aca33b78803d5bc86dae4ea2dbf2322a95fc (diff)
Option to ban users.
Diffstat (limited to 'db/schema.rb')
-rw-r--r--db/schema.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb
index 363e36a76..3096dd422 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 => 72) do
+ActiveRecord::Schema.define(:version => 73) do
create_table "acts_as_xapian_jobs", :force => true do |t|
t.string "model", :null => false
@@ -221,6 +221,7 @@ ActiveRecord::Schema.define(:version => 72) do
t.text "url_name", :null => false
t.datetime "last_daily_track_email", :default => '2000-01-01 00:00:00'
t.string "admin_level", :default => "none", :null => false
+ t.text "ban_text", :default => "", :null => false
end
add_index "users", ["url_name"], :name => "index_users_on_url_name", :unique => true