Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrandx <dmitriy.zaporozhets@gmail.com>2012-06-26 22:23:09 +0400
committerrandx <dmitriy.zaporozhets@gmail.com>2012-06-26 22:23:09 +0400
commit6abc649590cfb110a88e6b2bdd3755c7d8ab6b4e (patch)
tree564890fe3f7211f0b53a36a6b69e82cddcc261a9 /spec/models/wiki_spec.rb
parent283bf806766c02c8c66230f4c765070b0ed812fb (diff)
Reannotated
Diffstat (limited to 'spec/models/wiki_spec.rb')
-rw-r--r--spec/models/wiki_spec.rb15
1 files changed, 7 insertions, 8 deletions
diff --git a/spec/models/wiki_spec.rb b/spec/models/wiki_spec.rb
index 05dbc972350..892d0e8fe17 100644
--- a/spec/models/wiki_spec.rb
+++ b/spec/models/wiki_spec.rb
@@ -16,16 +16,15 @@ describe Wiki do
end
# == Schema Information
#
-# Table name: snippets
+# Table name: wikis
#
-# 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
-# file_name :string(255)
-# expires_at :datetime
+# project_id :integer(4)
+# created_at :datetime not null
+# updated_at :datetime not null
+# slug :string(255)
+# user_id :integer(4)
#