mirror of
https://github.com/glitch-soc/mastodon
synced 2025-09-07 21:51:13 +00:00
7 lines
130 B
Ruby
7 lines
130 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Web::Setting < ApplicationRecord
|
|
belongs_to :user
|
|
|
|
validates :user, uniqueness: true
|
|
end
|