11/11 My misfits cover band will be awesome.

Oh, all I want to know
All I want

With just a touch of my burning hand
I'm gonna live my life to to destroy your world
Prime directive, exterminate
The whole fuckin' race

438468.jpg
       class Zombie < ActiveRecord::Base
		has many ::victim_zombies
		has_many :victims, through:: victim_zombies
	end
	class Victim < ActiveRecord::Base
		has many ::victim_zombies
		has_many :zombies, through:: victim_zombies
	end
	class Meal (or simplified, VICTIMZOMBIE) < ActiveRecord::Base
		belongs_to :victim
		belongs_to :zombie
	end