]> git.imager.perl.org - bse.git/blob - site/cgi-bin/modules/BSE/TB/PriceTierPrice.pm
modernize edit_prodopts.tmpl
[bse.git] / site / cgi-bin / modules / BSE / TB / PriceTierPrice.pm
1 package BSE::TB::PriceTierPrice;
2 use strict;
3 use base 'Squirrel::Row';
4
5 our $VERSION = "1.000";
6
7 sub table {
8   return "bse_price_tier_prices";
9 }
10
11 sub columns {
12   return qw(id tier_id product_id retailPrice);
13 }
14
15 1;