1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/app/models/account_secret.rb
2024-07-29 13:19:07 +02:00

17 lines
384 B
Ruby

# frozen_string_literal: true
# == Schema Information
#
# Table name: account_secrets
#
# id :bigint(8) not null, primary key
# private_key :text
# account_id :bigint(8) not null
# created_at :datetime not null
# updated_at :datetime not null
#
class AccountSecret < ApplicationRecord
belongs_to :account
encrypts :private_key
end