diff options
author | francis <francis> | 2007-11-05 16:46:10 +0000 |
---|---|---|
committer | francis <francis> | 2007-11-05 16:46:10 +0000 |
commit | 39b35a39736d476d32624cb9db1ec19cb6d412b1 (patch) | |
tree | 87778fabb7a618ae7b9e29a90ff354d013c87e31 /db/schema.rb | |
parent | 935fb0717b5bf1b4b5e5ac47fd5ca057a610c9b1 (diff) |
Confirmation email for login.
Diffstat (limited to 'db/schema.rb')
-rw-r--r-- | db/schema.rb | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/db/schema.rb b/db/schema.rb index dce64b418..9f05fd4b4 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -2,7 +2,7 @@ # migrations feature of ActiveRecord to incrementally modify your database, and # then regenerate this schema definition. -ActiveRecord::Schema.define(:version => 15) do +ActiveRecord::Schema.define(:version => 17) do create_table "incoming_messages", :force => true do |t| t.column "info_request_id", :integer @@ -30,12 +30,14 @@ ActiveRecord::Schema.define(:version => 15) do end create_table "post_redirects", :force => true do |t| - t.column "token", :text - t.column "uri", :text - t.column "post_params_yaml", :text - t.column "created_at", :datetime - t.column "updated_at", :datetime - t.column "email_token", :text + t.column "token", :text + t.column "uri", :text + t.column "post_params_yaml", :text + t.column "created_at", :datetime + t.column "updated_at", :datetime + t.column "email_token", :text + t.column "reason_params_yaml", :text + t.column "user_id", :integer end create_table "public_bodies", :force => true do |t| @@ -79,6 +81,7 @@ ActiveRecord::Schema.define(:version => 15) do t.column "salt", :string t.column "created_at", :datetime t.column "updated_at", :datetime + t.column "email_confirmed", :boolean, :default => false end end |