aboutsummaryrefslogtreecommitdiff
path: root/MySqlDatabaseScript
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-10-05 20:57:10 +0200
committerlonkaars <loek@pipeframe.xyz>2022-10-05 20:57:10 +0200
commit4625b939aad3537bd130617944e01f5da693b23d (patch)
tree8cd4b9c94d9ca70b7386b369e16d81c659d01c6f /MySqlDatabaseScript
parent9c7f4e157f10aa58e4b78636a2f8556be4637a07 (diff)
initial merge of qt client
Diffstat (limited to 'MySqlDatabaseScript')
-rw-r--r--MySqlDatabaseScript/build.sql9
1 files changed, 0 insertions, 9 deletions
diff --git a/MySqlDatabaseScript/build.sql b/MySqlDatabaseScript/build.sql
deleted file mode 100644
index 4c4c4d4..0000000
--- a/MySqlDatabaseScript/build.sql
+++ /dev/null
@@ -1,9 +0,0 @@
-CREATE SCHEMA `WSdb`;
-CREATE TABLE `DAB1Pract1`.`tblMain` (
- `ID` INT GENERATED ALWAYS AS (),
- `temperature` DECIMAL(5,2) NULL,
- `humidity` DECIMAL(5,2) NULL,
- `pressure` DECIMAL(5,2) NULL,
- `time` DATETIME NULL,
- PRIMARY KEY (`ID`),
- UNIQUE INDEX `ID_UNIQUE` (`ID` ASC) VISIBLE);