Files
iot-cloud-api/migrations/1_devices.sql
Tobias Maier f76f248446
All checks were successful
Build Project / test (push) Successful in 6m32s
Now using macaddr datatype and added test for adding devices and displaynames
2025-01-04 17:06:13 +00:00

5 lines
112 B
SQL

-- Add migration script here
CREATE TABLE Devices (
ID MACADDR PRIMARY KEY,
display_name VARCHAR(255)
);