add NodeEntity

This commit is contained in:
2024-11-30 16:47:25 +01:00
parent e4e652fd9d
commit 727b28db25
2 changed files with 21 additions and 0 deletions

7
cql/01-nodes.cql Normal file
View File

@@ -0,0 +1,7 @@
-- Create a table
CREATE TABLE IF NOT EXISTS device_configuration.nodes
(
id UUID PRIMARY KEY,
timestamp TIMESTAMP,
configuration TEXT
);