00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 $installer = $this;
00028
00029
00030 $installer->startSetup();
00031
00032 $installer->run("
00033
00034 -- drop table if exists {$this->getTable('sales_counter')};
00035 -- drop table if exists {$this->getTable('sales_discount_coupon')};
00036 -- DROP TABLE IF EXISTS {$this->getTable('sales_giftcert')};
00037
00038 -- DROP TABLE IF EXISTS {$this->getTable('giftcert_code')};
00039 CREATE TABLE {$this->getTable('giftcert_code')} (
00040 `giftcert_id` int(10) unsigned NOT NULL auto_increment,
00041 `giftcert_code` varchar(50) NOT NULL default '',
00042 `balance_amount` decimal(12,4) NOT NULL default '0.0000',
00043 PRIMARY KEY (`giftcert_id`),
00044 UNIQUE KEY `gift_code` (`giftcert_code`)
00045 ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
00046
00047 insert into {$this->getTable('giftcert_code')} (`giftcert_id`,`giftcert_code`,`balance_amount`) values (1,'test',20.0000);
00048
00049 ");
00050
00051 $installer->endSetup();