class PgShrink::TableFilter

Attributes

opts[RW]
table[RW]

Public Class Methods

new(table, opts = nil, &block) click to toggle source
# File lib/pg_shrink/table_filter.rb, line 4
def initialize(table, opts = nil, &block)
  self.table = table
  @opts = opts
  @block = block if block_given?
end