Switched over to migrations

This commit is contained in:
2023-09-16 19:08:20 +00:00
parent f4ed0f9af2
commit 3f9dcb3a53
5 changed files with 54 additions and 54 deletions

5
migrations/1_devices.sql Normal file
View File

@@ -0,0 +1,5 @@
-- Add migration script here
CREATE TABLE Devices (
ID CHAR(32) PRIMARY KEY,
display_name VARCHAR(255)
);