diff --git a/acrate-core/migrations/2024-11-09-084403_Add nodeinfo table/down.sql b/acrate-core/migrations/2024-11-09-084403_Add nodeinfo table/down.sql deleted file mode 100644 index 2111f46..0000000 --- a/acrate-core/migrations/2024-11-09-084403_Add nodeinfo table/down.sql +++ /dev/null @@ -1 +0,0 @@ -DROP TABLE nodeinfo; \ No newline at end of file diff --git a/acrate-core/migrations/2024-11-09-084403_Add nodeinfo table/up.sql b/acrate-core/migrations/2024-11-09-084403_Add nodeinfo table/up.sql deleted file mode 100644 index c21c18f..0000000 --- a/acrate-core/migrations/2024-11-09-084403_Add nodeinfo table/up.sql +++ /dev/null @@ -1,9 +0,0 @@ -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) -);