Files
HomeMonitor/Environment/Service/Data/Schema/2-Device Table.psql

6 lines
121 B
Plaintext

CREATE TABLE device(
name text NOT NULL,
last_updated timestamptz NULL,
CONSTRAINT device_pk PRIMARY KEY (name)
);