class PgParty::Config

Attributes

caching[RW]
caching_ttl[RW]
create_template_tables[RW]
create_with_primary_key[RW]
include_subpartitions_in_partition_list[RW]
schema_exclude_partitions[RW]

Public Class Methods

new() click to toggle source
# File lib/pg_party/config.rb, line 13
def initialize
  @caching = true
  @caching_ttl = -1
  @schema_exclude_partitions = true
  @create_template_tables = true
  @create_with_primary_key = false
  @include_subpartitions_in_partition_list = false
end