36f861f1b1
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
19 lines
437 B
Ruby
19 lines
437 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
|
|
# created_at :datetime
|
|
# updated_at :datetime
|
|
# file_name :string(255)
|
|
# expires_at :datetime
|
|
# private :boolean default(TRUE), not null
|
|
# type :string(255)
|
|
#
|
|
|
|
class PersonalSnippet < Snippet
|
|
end
|