]> git.openstreetmap.org Git - rails.git/blobdiff - app/models/relation_member.rb
Switch to bootstrap for dropdowns and tooltips
[rails.git] / app / models / relation_member.rb
index 3e5cdfca27e1513856f12c4adf04fc89e95c5bd6..7f07dda9b82987226086f7d054e0a568d922f756 100644 (file)
@@ -2,9 +2,9 @@
 #
 # Table name: current_relation_members
 #
-#  relation_id :integer          not null, primary key
+#  relation_id :bigint(8)        not null, primary key
 #  member_type :enum             not null
-#  member_id   :integer          not null
+#  member_id   :bigint(8)        not null
 #  member_role :string           not null
 #  sequence_id :integer          default(0), not null, primary key
 #
@@ -17,7 +17,7 @@
 #  current_relation_members_id_fkey  (relation_id => current_relations.id)
 #
 
-class RelationMember < ActiveRecord::Base
+class RelationMember < ApplicationRecord
   self.table_name = "current_relation_members"
   self.primary_keys = "relation_id", "sequence_id"