summaryrefslogtreecommitdiff
path: root/app/models/snippet.rb
diff options
context:
space:
mode:
authorrandx <dmitriy.zaporozhets@gmail.com>2012-06-26 21:23:09 +0300
committerrandx <dmitriy.zaporozhets@gmail.com>2012-06-26 21:23:09 +0300
commit6abc649590cfb110a88e6b2bdd3755c7d8ab6b4e (patch)
tree564890fe3f7211f0b53a36a6b69e82cddcc261a9 /app/models/snippet.rb
parent283bf806766c02c8c66230f4c765070b0ed812fb (diff)
downloadgitlab-ce-6abc649590cfb110a88e6b2bdd3755c7d8ab6b4e.tar.gz
Reannotated
Diffstat (limited to 'app/models/snippet.rb')
-rw-r--r--app/models/snippet.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/models/snippet.rb b/app/models/snippet.rb
index 17d23418556..e5f04bb228b 100644
--- a/app/models/snippet.rb
+++ b/app/models/snippet.rb
@@ -62,13 +62,13 @@ end
#
# Table name: snippets
#
-# id :integer not null, primary key
+# id :integer(4) not null, primary key
# title :string(255)
# content :text
-# author_id :integer not null
-# project_id :integer not null
-# created_at :datetime
-# updated_at :datetime
+# author_id :integer(4) not null
+# project_id :integer(4) not null
+# created_at :datetime not null
+# updated_at :datetime not null
# file_name :string(255)
# expires_at :datetime
#