module PgHaMigrations::AutoIncluder
Public Instance Methods
inherited(klass)
click to toggle source
Calls superclass method
# File lib/pg_ha_migrations.rb, line 57 def inherited(klass) super(klass) if defined?(super) klass.prepend(PgHaMigrations::UnsafeStatements) klass.prepend(PgHaMigrations::SafeStatements) end