-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapply.sql
More file actions
31 lines (25 loc) · 709 Bytes
/
apply.sql
File metadata and controls
31 lines (25 loc) · 709 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
/*
Navicat MySQL Data Transfer
Source Server : local
Source Server Version : 80019
Source Host : localhost:3306
Source Database : better
Target Server Type : MYSQL
Target Server Version : 80019
File Encoding : 65001
Date: 2022-04-13 11:45:22
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for `apply`
-- ----------------------------
DROP TABLE IF EXISTS `apply`;
CREATE TABLE `apply` (
`id` int NOT NULL AUTO_INCREMENT,
`row` varchar(255) DEFAULT NULL,
`who` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of apply
-- ----------------------------