diff options
author | francis <francis> | 2008-08-27 00:39:03 +0000 |
---|---|---|
committer | francis <francis> | 2008-08-27 00:39:03 +0000 |
commit | 79f4c456c9c435f72dfd5ec5fce1049f57947a75 (patch) | |
tree | 2b091ad19113e50308c9aaf479d8a5c79f02f36f /db/schema.rb | |
parent | 18d4c071bd737f16bc135727087e5ebdbced97c1 (diff) |
Admin level field for users.
Edit users from admin interface.
Let admin users classify any request from main website interface.
Give admin users links from users/bodies/requests to admin interface.
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/db/schema.rb b/db/schema.rb index 3511724da..99ced4c04 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 => 62) do +ActiveRecord::Schema.define(:version => 63) do create_table "acts_as_xapian_jobs", :force => true do |t| t.string "model", :null => false @@ -176,6 +176,7 @@ ActiveRecord::Schema.define(:version => 62) do t.boolean "email_confirmed", :default => false, :null => false 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 end add_index "users", ["url_name"], :name => "index_users_on_url_name", :unique => true |