diff options
author | FxQnLr <[email protected]> | 2024-04-10 00:16:55 +0200 |
---|---|---|
committer | FxQnLr <[email protected]> | 2024-04-10 00:16:55 +0200 |
commit | 3428a637ce420baef9aa9f9803e71bd587867005 (patch) | |
tree | a1ad8234ae9bf3709794324a41e38c2f7fa58d0d /migrations | |
parent | 907e5cb5bc48899b444f7fedd85af7b5974d9a2e (diff) | |
download | webol-3428a637ce420baef9aa9f9803e71bd587867005.tar webol-3428a637ce420baef9aa9f9803e71bd587867005.tar.gz webol-3428a637ce420baef9aa9f9803e71bd587867005.zip |
Closes #24. Changed postgres to json directory storage
Diffstat (limited to 'migrations')
-rw-r--r-- | migrations/20231009123228_devices.sql | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/migrations/20231009123228_devices.sql b/migrations/20231009123228_devices.sql deleted file mode 100644 index 6983ada..0000000 --- a/migrations/20231009123228_devices.sql +++ /dev/null | |||
@@ -1,9 +0,0 @@ | |||
1 | -- Add migration script here | ||
2 | CREATE TABLE IF NOT EXISTS "devices" | ||
3 | ( | ||
4 | "id" VARCHAR(255) PRIMARY KEY NOT NULL, | ||
5 | "mac" MACADDR NOT NULL, | ||
6 | "broadcast_addr" VARCHAR(39) NOT NULL, | ||
7 | "ip" INET NOT NULL, | ||
8 | "times" BIGINT[] | ||
9 | ) | ||