From 402f22c8c2f9d98f8bb46b24ecf68c69f82eabdd Mon Sep 17 00:00:00 2001 From: Yuun Lim <38443641+yuunlimm@users.noreply.github.com> Date: Fri, 12 Jul 2024 11:01:54 -0700 Subject: [PATCH] fix diesel migration (#459) --- .../2024-07-08-182507_truncate_deprecated_tables/up.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/rust/processor/src/db/postgres/migrations/2024-07-08-182507_truncate_deprecated_tables/up.sql b/rust/processor/src/db/postgres/migrations/2024-07-08-182507_truncate_deprecated_tables/up.sql index e8f31311e..e4b75331c 100644 --- a/rust/processor/src/db/postgres/migrations/2024-07-08-182507_truncate_deprecated_tables/up.sql +++ b/rust/processor/src/db/postgres/migrations/2024-07-08-182507_truncate_deprecated_tables/up.sql @@ -1,4 +1,5 @@ ---- Delete the data inside the tables +SELECT 1; -- If you don't need the data and would like to delete, you could uncomment to run it. --TRUNCATE TABLE move_resources; --TRUNCATE TABLE write_set_changes;