diff options
author | Dmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com> | 2012-02-28 15:09:23 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dzaporozhets@sphereconsultinginc.com> | 2012-02-28 15:09:23 +0200 |
commit | a847501fd2ffc1c4becc7d0d352d80168d9b3568 (patch) | |
tree | b3b75ffaac483d1cb5ec497743e2525db1fd00d9 /app/models/wiki.rb | |
parent | 34e15801845f806e0f0f04aff8ba78962f8a9086 (diff) | |
download | gitlab-ce-a847501fd2ffc1c4becc7d0d352d80168d9b3568.tar.gz |
Event entity created
Diffstat (limited to 'app/models/wiki.rb')
-rw-r--r-- | app/models/wiki.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/app/models/wiki.rb b/app/models/wiki.rb index 62ac4cb8a9a..0f19567c4bf 100644 --- a/app/models/wiki.rb +++ b/app/models/wiki.rb @@ -31,3 +31,16 @@ class Wiki < ActiveRecord::Base end end +# == Schema Information +# +# Table name: wikis +# +# id :integer not null, primary key +# title :string(255) +# content :text +# project_id :integer +# created_at :datetime not null +# updated_at :datetime not null +# slug :string(255) +# user_id :integer +# |