From f99c8bdf2af220ffc96786df5c3c3b2d67d2605a Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Tue, 12 Nov 2024 19:23:03 +0100 Subject: [PATCH] `core`: Delete `nodeinfo` table Apparently nodeinfo shouldn't be cached --- .../2024-11-09-084403_Add nodeinfo table/down.sql | 1 - .../2024-11-09-084403_Add nodeinfo table/up.sql | 9 --------- 2 files changed, 10 deletions(-) delete mode 100644 acrate-core/migrations/2024-11-09-084403_Add nodeinfo table/down.sql delete mode 100644 acrate-core/migrations/2024-11-09-084403_Add nodeinfo table/up.sql 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) -);