You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
593 B
24 lines
593 B
/*
|
|
MySQL Data Transfer
|
|
Source Host: localhost
|
|
Source Database: aceshop
|
|
Target Host: localhost
|
|
Target Database: aceshop
|
|
Date: 2013-9-28 18:14:20
|
|
*/
|
|
|
|
SET FOREIGN_KEY_CHECKS=0;
|
|
-- ----------------------------
|
|
-- Table structure for t_shopmanager
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `t_shopmanager`;
|
|
CREATE TABLE `t_shopmanager` (
|
|
`SMname` varchar(25) DEFAULT NULL,
|
|
`SMpassword` varchar(25) DEFAULT NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=gbk;
|
|
|
|
-- ----------------------------
|
|
-- Records
|
|
-- ----------------------------
|
|
INSERT INTO `t_shopmanager` VALUES ('admin', '11245102');
|