-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtgdb.sql
More file actions
35 lines (29 loc) · 958 Bytes
/
tgdb.sql
File metadata and controls
35 lines (29 loc) · 958 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/*
Navicat Premium Data Transfer
Source Server : 168.138.215.59
Source Server Type : MySQL
Source Server Version : 80032 (8.0.32)
Source Host : 168.138.215.59:3306
Source Schema : tgdb
Target Server Type : MySQL
Target Server Version : 80032 (8.0.32)
File Encoding : 65001
Date: 12/02/2023 16:37:46
*/
CREATE DATABASE tgdb;
USE tgdb;
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for message
-- ----------------------------
DROP TABLE IF EXISTS `message`;
CREATE TABLE `message` (
`id` int NOT NULL AUTO_INCREMENT,
`text` varchar(15000) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_0900_ai_ci ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of message
-- ----------------------------
SET FOREIGN_KEY_CHECKS = 1;