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.

40 lines
1.2 KiB

/*
Navicat Premium Data Transfer
Source Server : host
Source Server Type : MySQL
Source Server Version : 50734
Source Host : localhost:3306
Source Schema : fkchat
Target Server Type : MySQL
Target Server Version : 50734
File Encoding : 65001
Date: 02/06/2024 12:18:33
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for users
-- ----------------------------
DROP TABLE IF EXISTS `users`;
CREATE TABLE `users` (
`id` int(20) NOT NULL AUTO_INCREMENT,
`username` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`password` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 5 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of users
-- ----------------------------
INSERT INTO `users` VALUES (1, 'admin', '123456');
INSERT INTO `users` VALUES (2, 'zzv', '123456');
INSERT INTO `users` VALUES (3, 'lgq', '123123');
INSERT INTO `users` VALUES (4, 'lgq', '123123');
SET FOREIGN_KEY_CHECKS = 1;