1
Fork 0
tirocinio-canali-steffo-acrate/acrate-core/migrations/2024-11-09-084403_Add nodeinfo table/up.sql

10 lines
196 B
MySQL
Raw Normal View History

2024-11-09 08:52:32 +00:00
CREATE TABLE nodeinfo (
nodeinfo_schema VARCHAR NOT NULL,
nodeinfo_href VARCHAR NOT NULL,
nodeinfo_data JSON NOT NULL,
last_updated TIMESTAMP NOT NULL,
PRIMARY KEY(nodeinfo_href)
);