From 28426519e11e72576b1a3339f47c420f9c184e49 Mon Sep 17 00:00:00 2001 From: David Gay Date: Mon, 5 Jul 2021 20:30:15 -0400 Subject: Give characters a location, and replace the Locations view+controller with a Look view+controller --- app/models/character.rb | 1 + app/models/location.rb | 1 + 2 files changed, 2 insertions(+) (limited to 'app/models') diff --git a/app/models/character.rb b/app/models/character.rb index 2669626..96dafd0 100644 --- a/app/models/character.rb +++ b/app/models/character.rb @@ -1,6 +1,7 @@ class Character < ApplicationRecord belongs_to :user belongs_to :activity, optional: true + belongs_to :location has_many :title_awards has_many :titles, through: :title_awards belongs_to :active_title, class_name: "Title", optional: true diff --git a/app/models/location.rb b/app/models/location.rb index e008270..7bd1386 100644 --- a/app/models/location.rb +++ b/app/models/location.rb @@ -2,6 +2,7 @@ class Location < ApplicationRecord include HasWhatnot has_many :activities + has_many :characters has_many :monster_spawns validates :gid, :name, presence: true end -- cgit v1.2.3