module HairTrigger::Migrator
Public Class Methods
extended(base)
click to toggle source
# File lib/hair_trigger/migrator.rb, line 12 def extended(base) base.class_eval do class << self prepend ProperTableNameWithHashAwarenessSupport end end end
included(base)
click to toggle source
# File lib/hair_trigger/migrator.rb, line 20 def included(base) base.instance_eval do prepend ProperTableNameWithHashAwarenessSupport end end