2020-12-16 00:31:30 +00:00
|
|
|
# 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
|
|
|
|
#
|
|
|
|
|
|
|
|
class StatusBookmarkCollection < ApplicationRecord
|
|
|
|
|
2020-12-17 06:34:00 +00:00
|
|
|
PER_ACCOUNT_LIMIT = 150
|
2020-12-16 00:31:30 +00:00
|
|
|
|
2020-12-17 06:34:00 +00:00
|
|
|
belongs_to :account, inverse_of: :status_bookmark_collections
|
2020-12-16 00:31:30 +00:00
|
|
|
|
|
|
|
end
|