Progress
This commit is contained in:
19
app/models/status_bookmark_collection.rb
Normal file
19
app/models/status_bookmark_collection.rb
Normal file
@@ -0,0 +1,19 @@
|
||||
# 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
|
||||
|
||||
PER_ACCOUNT_LIMIT = 100
|
||||
|
||||
belongs_to :account
|
||||
|
||||
end
|
||||
Reference in New Issue
Block a user