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.
30 lines
813 B
30 lines
813 B
/*
|
|
MySQL Data Transfer
|
|
Source Host: localhost
|
|
Source Database: aceshop
|
|
Target Host: localhost
|
|
Target Database: aceshop
|
|
Date: 2013-9-28 18:14:22
|
|
*/
|
|
|
|
SET FOREIGN_KEY_CHECKS=0;
|
|
-- ----------------------------
|
|
-- Table structure for t_user
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `t_user`;
|
|
CREATE TABLE `t_user` (
|
|
`u_ID` int(11) NOT NULL AUTO_INCREMENT,
|
|
`u_Name` varchar(30) NOT NULL,
|
|
`u_Pwd` varchar(30) NOT NULL,
|
|
`u_Address` varchar(100) DEFAULT NULL,
|
|
`u_Mobile` varchar(11) DEFAULT NULL,
|
|
`u_Phone` varchar(15) DEFAULT NULL,
|
|
`u_Email` varchar(50) DEFAULT NULL,
|
|
PRIMARY KEY (`u_ID`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=gbk;
|
|
|
|
-- ----------------------------
|
|
-- Records
|
|
-- ----------------------------
|
|
INSERT INTO `t_user` VALUES ('1', 'hhy', '001', null, null, null, null);
|