diff options
author | francis <francis> | 2008-03-21 14:45:38 +0000 |
---|---|---|
committer | francis <francis> | 2008-03-21 14:45:38 +0000 |
commit | 53b0da179b7bd8fc5c47a00c1b44673a436b35d9 (patch) | |
tree | f02d44b8515d35f9dc35fca81b55155e7d76c68e /db/schema.rb | |
parent | 426be7f2c0eb5cf09bb35bb9d40c67b7af59d7ec (diff) |
More secure password changing - have to specifically have clicked link in
change password email, rather than using any link.
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/db/schema.rb b/db/schema.rb index 2f304ddc7..d057a9a10 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 => 44) do +ActiveRecord::Schema.define(:version => 45) do create_table "incoming_messages", :force => true do |t| t.integer "info_request_id", :null => false @@ -56,14 +56,15 @@ ActiveRecord::Schema.define(:version => 44) do end create_table "post_redirects", :force => true do |t| - t.text "token", :null => false - t.text "uri", :null => false + t.text "token", :null => false + t.text "uri", :null => false t.text "post_params_yaml" - t.datetime "created_at", :null => false - t.datetime "updated_at", :null => false - t.text "email_token", :null => false + t.datetime "created_at", :null => false + t.datetime "updated_at", :null => false + t.text "email_token", :null => false t.text "reason_params_yaml" t.integer "user_id" + t.text "circumstance", :default => "normal", :null => false end add_index "post_redirects", ["email_token"], :name => "index_post_redirects_on_email_token" |