-
Notifications
You must be signed in to change notification settings - Fork 0
/
wind_farm_url.sql
34 lines (28 loc) · 974 Bytes
/
wind_farm_url.sql
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
/*
Navicat Premium Data Transfer
Source Server : mysql
Source Server Type : MySQL
Source Server Version : 50739 (5.7.39-log)
Source Host : localhost:3306
Source Schema : windpowerforecast
Target Server Type : MySQL
Target Server Version : 50739 (5.7.39-log)
File Encoding : 65001
Date: 16/07/2023 19:38:45
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for wind_farm
-- ----------------------------
DROP TABLE IF EXISTS `wind_farm_url`;
CREATE TABLE `wind_farm_url` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`farm_id` bigint(20) NOT NULL,
`origin_file_url` varchar(255),
`process_file_url` varchar(255),
`type` int(11) NOT NULL DEFAULT 1,
`is_deleted` tinyint(4) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
SET FOREIGN_KEY_CHECKS = 1;