gitlab-org--gitlab-foss/app/models/personal_snippet.rb
2013-03-25 02:19:40 +04:00

18 lines
454 B
Ruby

# == Schema Information
#
# Table name: snippets
#
# id :integer not null, primary key
# title :string(255)
# content :text
# author_id :integer not null
# project_id :integer not null
# created_at :datetime not null
# updated_at :datetime not null
# file_name :string(255)
# expires_at :datetime
# type :string(255)
# private :boolean
class PersonalSnippet < Snippet
end