diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-08-21 12:34:02 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-08-21 12:34:02 +0300 |
commit | 8dd37afe3489ef46e14b33c66d9b80e913540f62 (patch) | |
tree | 1375ec1333b451186ff3661aee54465739ca6c80 /app/models/project.rb | |
parent | fb492386c5323c4996d05a63ba8d93db6ed07f93 (diff) | |
download | gitlab-ce-8dd37afe3489ef46e14b33c66d9b80e913540f62.tar.gz |
Reannotate
Diffstat (limited to 'app/models/project.rb')
-rw-r--r-- | app/models/project.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/app/models/project.rb b/app/models/project.rb index a40cea2ad39..b1b7634233c 100644 --- a/app/models/project.rb +++ b/app/models/project.rb @@ -6,8 +6,8 @@ # name :string(255) # path :string(255) # description :text -# created_at :datetime -# updated_at :datetime +# created_at :datetime not null +# updated_at :datetime not null # creator_id :integer # default_branch :string(255) # issues_enabled :boolean default(TRUE), not null @@ -21,6 +21,7 @@ # snippets_enabled :boolean default(TRUE), not null # last_activity_at :datetime # imported :boolean default(FALSE), not null +# import_url :string(255) # require "grit" |