From 68faaf9d53b23332d691bcd5d951156a7ef3e2f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89mile=20R=C3=A9?= Date: Wed, 11 Mar 2026 17:22:11 +0400 Subject: [PATCH] Remove unused columns MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Émile Ré --- pkg/coredata/migrations/20260311T171614Z.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 pkg/coredata/migrations/20260311T171614Z.sql diff --git a/pkg/coredata/migrations/20260311T171614Z.sql b/pkg/coredata/migrations/20260311T171614Z.sql new file mode 100644 index 000000000..57ebe8fc0 --- /dev/null +++ b/pkg/coredata/migrations/20260311T171614Z.sql @@ -0,0 +1,8 @@ +ALTER TABLE + iam_memberships DROP COLUMN source, + DROP COLUMN state; + +ALTER TABLE + iam_invitations DROP COLUMN full_name, + DROP COLUMN email, + DROP COLUMN role;