From 05c7b9151c69cbf2a370a7f6e71a6bf67cb782ac Mon Sep 17 00:00:00 2001 From: jude Date: Thu, 21 May 2026 20:15:43 +0100 Subject: [PATCH] Remove column drop --- Cargo.lock | 2 +- Cargo.toml | 2 +- migrations/20260516170852_drop_columns.sql | 4 ---- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3a249f2..3846a2a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2623,7 +2623,7 @@ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" [[package]] name = "reminder-rs" -version = "1.7.41" +version = "1.7.42" dependencies = [ "base64 0.22.1", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 1f3278f..5d817f2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "reminder-rs" -version = "1.7.41" +version = "1.7.42" authors = ["Jude Southworth "] edition = "2021" license = "AGPL-3.0 only" diff --git a/migrations/20260516170852_drop_columns.sql b/migrations/20260516170852_drop_columns.sql index 7c7fbee..a92a34c 100644 --- a/migrations/20260516170852_drop_columns.sql +++ b/migrations/20260516170852_drop_columns.sql @@ -10,8 +10,4 @@ DROP TABLE IF EXISTS macro; DROP TABLE IF EXISTS roles; DROP TABLE IF EXISTS command_restrictions; --- Drop columns from channels that are no longer used -ALTER TABLE channels DROP COLUMN `name`; -ALTER TABLE channels DROP COLUMN `blacklisted`; - SET foreign_key_checks = 1;