BigW Consortium Gitlab

personal_snippet.rb 437 Bytes
Newer Older
1 2 3 4 5 6
# == Schema Information
#
# Table name: snippets
#
#  id         :integer          not null, primary key
#  title      :string(255)
Dmitriy Zaporozhets committed
7
#  content    :text
8
#  author_id  :integer          not null
Dmitriy Zaporozhets committed
9
#  project_id :integer
Dmitriy Zaporozhets committed
10 11
#  created_at :datetime
#  updated_at :datetime
12 13
#  file_name  :string(255)
#  expires_at :datetime
Dmitriy Zaporozhets committed
14
#  private    :boolean          default(TRUE), not null
15
#  type       :string(255)
Dmitriy Zaporozhets committed
16
#
17 18 19

class PersonalSnippet < Snippet
end