gab-social/app/models/status_bookmark_collection.rb
mgabdev 5a37a7090e Progress
accounts approved, video player testing, bookmark collections
2020-12-17 01:34:00 -05:00

21 lines
506 B
Ruby

# frozen_string_literal: true
# == Schema Information
#
# Table name: status_bookmark_collections
#
# id :bigint(8) not null, primary key
# title :text default(""), not null
# account_id :integer not null
# created_at :datetime not null
# updated_at :datetime not null
# visibility :string
#
class StatusBookmarkCollection < ApplicationRecord
PER_ACCOUNT_LIMIT = 150
belongs_to :account, inverse_of: :status_bookmark_collections
end