class PG::Schema::Migration

Attributes

down[RW]
up[RW]

Public Class Methods

new() click to toggle source
# File lib/pg/schema-migration.rb, line 31
def initialize
  @up   = []
  @down = []
end