diff options
author | Seb Bacon <seb.bacon@gmail.com> | 2012-05-24 10:14:05 +0100 |
---|---|---|
committer | Seb Bacon <seb.bacon@gmail.com> | 2012-05-24 10:14:05 +0100 |
commit | 211d62c99dc70a2c259a2d00485f6f15c353ab2f (patch) | |
tree | 9ff60f4272ba4e4e628b755fef1033b324adcce9 /app/models/user.rb | |
parent | 6b4e84909554224ea30f901146610d452d612a55 (diff) |
Re-annotate models
Diffstat (limited to 'app/models/user.rb')
-rw-r--r-- | app/models/user.rb | 50 |
1 files changed, 26 insertions, 24 deletions
diff --git a/app/models/user.rb b/app/models/user.rb index 4a7153b3f..d8a307f5e 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -1,27 +1,3 @@ -# == Schema Information -# Schema version: 108 -# -# Table name: users -# -# id :integer not null, primary key -# email :string(255) not null -# name :string(255) not null -# hashed_password :string(255) not null -# salt :string(255) not null -# created_at :datetime not null -# updated_at :datetime not null -# email_confirmed :boolean default(FALSE), not null -# url_name :text not null -# last_daily_track_email :datetime default(Sat Jan 01 00:00:00 UTC 2000) -# admin_level :string(255) default("none"), not null -# ban_text :text default(""), not null -# about_me :text default(""), not null -# locale :string(255) -# email_bounced_at :datetime -# email_bounce_message :text default(""), not null -# no_limit :boolean default(FALSE), not null -# - # models/user.rb: # Model of people who use the site to file requests, make comments etc. # @@ -441,3 +417,29 @@ class User < ActiveRecord::Base end end + +# == Schema Information +# +# Table name: users +# +# id :integer not null, primary key +# email :string(255) not null +# name :string(255) not null +# hashed_password :string(255) not null +# salt :string(255) not null +# created_at :datetime not null +# updated_at :datetime not null +# email_confirmed :boolean default(FALSE), not null +# url_name :text not null +# last_daily_track_email :datetime default(Sat Jan 01 00:00:00 UTC 2000) +# admin_level :string(255) default("none"), not null +# ban_text :text default(""), not null +# about_me :text default(""), not null +# locale :string(255) +# email_bounced_at :datetime +# email_bounce_message :text default(""), not null +# no_limit :boolean default(FALSE), not null +# receive_email_alerts :boolean default(TRUE), not null +# user_similarity_id :integer +# + |