The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Business::Cart::Generic::Schema::Result::TaxRate

ACCESSORS

id

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0
  sequence: 'tax_rates_id_seq'

tax_class_id

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 0

zone_id

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 0

date_added

  data_type: 'timestamp'
  is_nullable: 0

date_modified

  data_type: 'timestamp'
  is_nullable: 0

description

  data_type: 'varchar'
  is_nullable: 0
  size: 255

priority

  data_type: 'integer'
  default_value: 1
  is_nullable: 1

rate

  data_type: 'numeric'
  is_nullable: 0
  size: [7,4]

name

  data_type: 'varchar'
  is_nullable: 0
  size: 255

upper_name

  data_type: 'varchar'
  is_nullable: 0
  size: 255

RELATIONS

zone

Type: belongs_to

Related object: Business::Cart::Generic::Schema::Result::Zone

tax_class

Type: belongs_to

Related object: Business::Cart::Generic::Schema::Result::TaxClass