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.

38 lines
1.4 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/*
Navicat MySQL Data Transfer
Source Server : 本机
Source Server Version : 80017
Source Host : localhost:3306
Source Database : service-passenger-user
Target Server Type : MYSQL
Target Server Version : 80017
File Encoding : 65001
Date: 2022-07-20 14:40:56
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for passenger_user
-- ----------------------------
DROP TABLE IF EXISTS `passenger_user`;
CREATE TABLE `passenger_user` (
`id` bigint(32) unsigned NOT NULL AUTO_INCREMENT,
`gmt_create` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
`gmt_modified` datetime DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP,
`passenger_phone` varchar(16) DEFAULT NULL,
`passenger_name` varchar(16) DEFAULT NULL,
`passenger_gender` tinyint(1) DEFAULT NULL COMMENT '0未知12',
`state` tinyint(1) DEFAULT NULL COMMENT '0有效1失效',
`profile_photo` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL COMMENT '头像图片地址的url',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1537346335930388483 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
-- ----------------------------
-- Records of passenger_user
-- ----------------------------
INSERT INTO `passenger_user` VALUES ('1537346335930388482', '2022-06-21 17:17:21', '2022-06-21 17:17:21', '18178101668', '张三', '0', '0', 'pic.msb.com');