diff options
author | Robin Houston <robin@lenny.robin> | 2011-09-07 22:24:29 +0100 |
---|---|---|
committer | Robin Houston <robin@lenny.robin> | 2011-09-07 22:24:29 +0100 |
commit | cda7e0d3bd09cd6635286861fe93b8fa4ad48c7d (patch) | |
tree | 2b1e939000ecef6e0738e38ca87fb469d093507f | |
parent | 7a918301c06527c07175d99c3a5fd390e7d5f55f (diff) |
Change the type of User.email_bounce_message to :text, because we
are storing the entire bounce email in there now.
-rw-r--r-- | app/models/user.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/user.rb b/app/models/user.rb index 1043474d3..82c7c5fae 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -17,7 +17,7 @@ # ban_text :text default(""), not null # about_me :text default(""), not null # email_bounced_at :datetime -# email_bounce_message :string(1024) default(""), not null +# email_bounce_message :text default(""), not null # # models/user.rb: |