]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/user_role.rb
Merge remote-tracking branch 'upstream/pull/2431'
[rails.git] / app / models / user_role.rb
index 9686f7250bdc7234173dad784686811420422594..a081361a76cb6db41fe03737c313db6fc08ddc45 100644 (file)
@@ -1,7 +1,29 @@
-class UserRole < ActiveRecord::Base
+# == 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)
+  ALL_ROLES = %w[administrator moderator].freeze
 
   validates :role, :inclusion => ALL_ROLES, :uniqueness => { :scope => :user_id }
 end