diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-11-13 14:10:03 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-11-13 14:10:03 +0200 |
commit | 201d489780de36eeb8e1826bbb7d1ebd8a64959b (patch) | |
tree | fa415fbee1084490035bf9e3aa0c5059e7e4e005 /app | |
parent | f4912e04fd62556ee153b4a4903cbb1706a39746 (diff) | |
download | gitlab-ce-201d489780de36eeb8e1826bbb7d1ebd8a64959b.tar.gz |
Annotate
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'app')
-rw-r--r-- | app/models/broadcast_message.rb | 13 | ||||
-rw-r--r-- | app/models/flowdock_service.rb | 2 | ||||
-rw-r--r-- | app/models/project.rb | 1 | ||||
-rw-r--r-- | app/models/user.rb | 5 |
4 files changed, 20 insertions, 1 deletions
diff --git a/app/models/broadcast_message.rb b/app/models/broadcast_message.rb index 5b0040f6ca3..a8b1db9c24e 100644 --- a/app/models/broadcast_message.rb +++ b/app/models/broadcast_message.rb @@ -1,3 +1,16 @@ +# == Schema Information +# +# Table name: broadcast_messages +# +# id :integer not null, primary key +# message :text default(""), not null +# starts_at :datetime +# ends_at :datetime +# alert_type :integer +# created_at :datetime not null +# updated_at :datetime not null +# + class BroadcastMessage < ActiveRecord::Base attr_accessible :alert_type, :ends_at, :message, :starts_at diff --git a/app/models/flowdock_service.rb b/app/models/flowdock_service.rb index 6ec431d4a10..f72d9fa9015 100644 --- a/app/models/flowdock_service.rb +++ b/app/models/flowdock_service.rb @@ -11,6 +11,8 @@ # updated_at :datetime not null # active :boolean default(FALSE), not null # project_url :string(255) +# subdomain :string(255) +# room :string(255) # require "flowdock-git-hook" diff --git a/app/models/project.rb b/app/models/project.rb index 73aa237013e..e255f13c42d 100644 --- a/app/models/project.rb +++ b/app/models/project.rb @@ -9,7 +9,6 @@ # created_at :datetime not null # updated_at :datetime not null # creator_id :integer -# default_branch :string(255) # issues_enabled :boolean default(TRUE), not null # wall_enabled :boolean default(TRUE), not null # merge_requests_enabled :boolean default(TRUE), not null diff --git a/app/models/user.rb b/app/models/user.rb index ce8c88ca69e..f522f9133b6 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -36,6 +36,11 @@ # notification_level :integer default(1), not null # password_expires_at :datetime # created_by_id :integer +# avatar :string(255) +# confirmation_token :string(255) +# confirmed_at :datetime +# confirmation_sent_at :datetime +# unconfirmed_email :string(255) # require 'carrierwave/orm/activerecord' |