hensei-api/app/models/awakening.rb
Justin Edmund d7f11e3ca5 Update awakening.rb
- Removes explicitly defined associations and adds ActiveRecord associations instead
2025-02-09 18:34:00 -08:00

10 lines
224 B
Ruby

# frozen_string_literal: true
class Awakening < ApplicationRecord
has_many :weapon_awakenings, foreign_key: :awakening_id
has_many :weapons, through: :weapon_awakenings
def awakening
AwakeningBlueprint
end
end