aboutsummaryrefslogtreecommitdiff
path: root/migrations
diff options
context:
space:
mode:
authorFxQnLr <[email protected]>2023-10-21 21:31:02 +0200
committerGitHub <[email protected]>2023-10-21 21:31:02 +0200
commite8a8b2d33eec5da6701b04181b14de755e8b8063 (patch)
tree5cd77421900fd8ec02f05d15e6fb195f28dfceb4 /migrations
parent48943e0de28b99d7f108e96b7d250bbf1a6c5a5b (diff)
parentbf1aeb7191bfaa75f1acf47c675bc68b9fac1cd8 (diff)
downloadwebol-e8a8b2d33eec5da6701b04181b14de755e8b8063.tar
webol-e8a8b2d33eec5da6701b04181b14de755e8b8063.tar.gz
webol-e8a8b2d33eec5da6701b04181b14de755e8b8063.zip
Merge pull request #4 from FxQnLr/database-init
int db in process
Diffstat (limited to 'migrations')
-rw-r--r--migrations/20231009123228_devices.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/migrations/20231009123228_devices.sql b/migrations/20231009123228_devices.sql
index 5856c3a..9d0c7ca 100644
--- a/migrations/20231009123228_devices.sql
+++ b/migrations/20231009123228_devices.sql
@@ -1,7 +1,7 @@
1-- Add migration script here 1-- Add migration script here
2CREATE TABLE "devices" 2CREATE TABLE IF NOT EXISTS "devices"
3( 3(
4 "id" TEXT PRIMARY KEY NOT NULL, 4 "id" TEXT PRIMARY KEY NOT NULL,
5 "mac" TEXT NOT NULL, 5 "mac" TEXT NOT NULL,
6 "broadcast_addr" TEXT NOT NULL 6 "broadcast_addr" TEXT NOT NULL
7) \ No newline at end of file 7)