From 732c487d3dab4af9fc561527591d3d56299e39f2 Mon Sep 17 00:00:00 2001 From: fx Date: Mon, 9 Oct 2023 16:06:08 +0200 Subject: added db for devices --- migrations/20231009123228_devices.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 migrations/20231009123228_devices.sql (limited to 'migrations/20231009123228_devices.sql') 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 @@ +-- Add migration script here +CREATE TABLE "devices" +( + "id" TEXT PRIMARY KEY NOT NULL, + "mac" TEXT NOT NULL, + "broadcast_addr" TEXT NOT NULL +) \ No newline at end of file -- cgit v1.2.3