2019-01-18 14:56:55 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: tombstones
|
|
|
|
#
|
2019-05-09 20:03:03 +00:00
|
|
|
# id :bigint(8) not null, primary key
|
|
|
|
# account_id :bigint(8)
|
|
|
|
# uri :string not null
|
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
|
|
|
# by_moderator :boolean
|
2019-01-18 14:56:55 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
class Tombstone < ApplicationRecord
|
2019-01-18 22:52:09 +00:00
|
|
|
belongs_to :account
|
2019-01-18 14:56:55 +00:00
|
|
|
end
|