Fix missing/incorrect Model specifications in migrations

We need to define the required models within the migration (not below) to work reliably.
This commit is contained in:
Sebastian Serth
2024-07-01 23:29:15 +02:00
committed by Sebastian Serth
parent cef961a1e7
commit 6c44ffbd5c
20 changed files with 211 additions and 39 deletions

View File

@@ -1,6 +1,32 @@
# frozen_string_literal: true
class MigratePermissionsToStudyGroup < ActiveRecord::Migration[6.1]
class Consumer < ApplicationRecord
has_many :study_groups
has_many :internal_users
has_many :external_users
end
class StudyGroup < ApplicationRecord
belongs_to :consumer
has_many :study_group_memberships
end
class InternalUser < ApplicationRecord
belongs_to :consumer
has_many :study_group_memberships, as: :user
end
class ExternalUser < ApplicationRecord
belongs_to :consumer
has_many :study_group_memberships, as: :user
end
class StudyGroupMembership < ApplicationRecord
belongs_to :study_group
belongs_to :user, polymorphic: true
end
# rubocop:disable Rails/SkipsModelValidations
def up
create_default_groups