From a001303a3c0a0492d92356218073e673cd81d3c1 Mon Sep 17 00:00:00 2001 From: Dmitry Marakasov Date: Mon, 16 Dec 2024 19:21:39 +0300 Subject: [PATCH] Remove old history table --- sql.d/schema/create_schema_tables.sql | 7 ------- 1 file changed, 7 deletions(-) diff --git a/sql.d/schema/create_schema_tables.sql b/sql.d/schema/create_schema_tables.sql index b9ffe8f0..abe5b537 100644 --- a/sql.d/schema/create_schema_tables.sql +++ b/sql.d/schema/create_schema_tables.sql @@ -258,13 +258,6 @@ CREATE TABLE repositories ( CREATE UNIQUE INDEX ON repositories(name); -- history -DROP TABLE IF EXISTS repositories_history CASCADE; - -CREATE TABLE repositories_history ( - ts timestamp with time zone NOT NULL PRIMARY KEY, - snapshot jsonb NOT NULL -); - DROP TABLE IF EXISTS repositories_history_new CASCADE; CREATE TABLE repositories_history_new (