| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*
- Navicat MySQL Data Transfer
- Source Server : localhost
- Source Server Version : 50528
- Source Host : localhost:3306
- Source Database : test
- Target Server Type : MYSQL
- Target Server Version : 50528
- File Encoding : 65001
- Date: 2013-06-02 17:57:16
- */
- SET FOREIGN_KEY_CHECKS=0;
- -- ----------------------------
- -- Table structure for `shop`
- -- ----------------------------
- DROP TABLE IF EXISTS `shop`;
- CREATE TABLE `shop` (
- `order_product_id` int(11) NOT NULL,
- `order_id` int(11) NOT NULL DEFAULT '0',
- `product_id` int(11) NOT NULL DEFAULT '0',
- `status` tinyint(2) NOT NULL DEFAULT '0',
- `name` varchar(64) NOT NULL DEFAULT '',
- `price` decimal(15,4) NOT NULL DEFAULT '0.0000',
- `quantity` int(4) NOT NULL DEFAULT '0',
- `delivered` tinyint(1) NOT NULL DEFAULT '0',
- `updatedate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
- `deliveruser` varchar(32) NOT NULL DEFAULT '',
- `ip` varchar(32) NOT NULL DEFAULT '',
- `email` varchar(256) NOT NULL DEFAULT '',
- PRIMARY KEY (`order_product_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
- -- ----------------------------
- -- Records of shop
- -- ----------------------------
|