class InstallPgAuditLog
Public Class Methods
down()
click to toggle source
# File lib/generators/pg_audit_log/templates/migration.rb, line 9 def self.down PgAuditLog::Triggers.uninstall PgAuditLog::Function.uninstall PgAuditLog::Entry.uninstall end
up()
click to toggle source
# File lib/generators/pg_audit_log/templates/migration.rb, line 3 def self.up PgAuditLog::Entry.install PgAuditLog::Function.install PgAuditLog::Triggers.install end