상품요약정보 테이블 삭제

This commit is contained in:
chicpro
2013-05-16 10:02:05 +09:00
parent a6dc2737a9
commit 0330e4633f

View File

@ -426,24 +426,6 @@ CREATE TABLE IF NOT EXISTS `shop_item` (
-- --------------------------------------------------------
--
-- Table structure for table `shop_item_info`
--
DROP TABLE IF EXISTS `shop_item_info`;
CREATE TABLE IF NOT EXISTS `shop_item_info` (
`ii_id` int(11) NOT NULL AUTO_INCREMENT,
`it_id` varchar(20) NOT NULL,
`ii_gubun` varchar(50) NOT NULL,
`ii_article` varchar(50) NOT NULL,
`ii_title` varchar(255) NOT NULL,
`ii_value` varchar(255) NOT NULL,
PRIMARY KEY (`ii_id`),
UNIQUE KEY `it_id` (`it_id`,`ii_gubun`,`ii_article`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `shop_item_ps`
--