신규회원 쿠폰 발행기능 추가

This commit is contained in:
chicpro
2014-03-10 15:50:25 +09:00
parent 37978b00d2
commit c6161454cf
6 changed files with 87 additions and 2 deletions

View File

@ -304,7 +304,10 @@ CREATE TABLE IF NOT EXISTS `g5_shop_default` (
`de_guest_privacy` text NOT NULL,
`de_hp_use` tinyint(4) NOT NULL DEFAULT '0',
`de_escrow_use` tinyint(4) NOT NULL DEFAULT '0',
`de_tax_flag_use` tinyint(4) NOT NULL DEFAULT '0'
`de_tax_flag_use` tinyint(4) NOT NULL DEFAULT '0',
`de_member_reg_coupon_use` tinyint(4) NOT NULL DEFAULT '0',
`de_member_reg_coupon_term` int(11) NOT NULL DEFAULT '0',
`de_member_reg_coupon_price` int(11) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------