diff options
author | fx <[email protected]> | 2023-10-09 16:06:08 +0200 |
---|---|---|
committer | fx <[email protected]> | 2023-10-09 16:06:08 +0200 |
commit | 732c487d3dab4af9fc561527591d3d56299e39f2 (patch) | |
tree | 8c26464761f0c879a0aa7517e236af72cf87c6b2 /migrations | |
parent | bc5f721de8996b48550b5069f5592caf2968e822 (diff) | |
download | webol-732c487d3dab4af9fc561527591d3d56299e39f2.tar webol-732c487d3dab4af9fc561527591d3d56299e39f2.tar.gz webol-732c487d3dab4af9fc561527591d3d56299e39f2.zip |
added db for devices
Diffstat (limited to 'migrations')
-rw-r--r-- | migrations/20231009123228_devices.sql | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/migrations/20231009123228_devices.sql b/migrations/20231009123228_devices.sql new file mode 100644 index 0000000..5856c3a --- /dev/null +++ b/migrations/20231009123228_devices.sql | |||
@@ -0,0 +1,7 @@ | |||
1 | -- Add migration script here | ||
2 | CREATE TABLE "devices" | ||
3 | ( | ||
4 | "id" TEXT PRIMARY KEY NOT NULL, | ||
5 | "mac" TEXT NOT NULL, | ||
6 | "broadcast_addr" TEXT NOT NULL | ||
7 | ) \ No newline at end of file | ||