openstreetmap-website/app/models/user_role.rb
Andy Allan a41d500b9f Create an ApplicationRecord for models to inherit from
This is the default for Rails 5+, and also paves the way for
multiple database support.
2019-11-27 11:50:48 +01:00

29 lines
711 B
Ruby

# == Schema Information
#
# Table name: user_roles
#
# id :integer not null, primary key
# user_id :bigint(8) not null
# role :enum not null
# created_at :datetime
# updated_at :datetime
# granter_id :bigint(8) not null
#
# Indexes
#
# user_roles_id_role_unique (user_id,role) UNIQUE
#
# Foreign Keys
#
# user_roles_granter_id_fkey (granter_id => users.id)
# user_roles_user_id_fkey (user_id => users.id)
#
class UserRole < ApplicationRecord
belongs_to :user
belongs_to :granter, :class_name => "User"
ALL_ROLES = %w[administrator moderator].freeze
validates :role, :inclusion => ALL_ROLES, :uniqueness => { :scope => :user_id }
end