Add email and span cols to audit table

This commit is contained in:
wendrul
2025-06-18 14:43:26 +02:00
parent 9537fe9cfc
commit 7414972b92
2 changed files with 6 additions and 0 deletions
@@ -0,0 +1,3 @@
-- Remove email and span columns from audit table
ALTER TABLE audit DROP COLUMN email;
ALTER TABLE audit DROP COLUMN span;
@@ -0,0 +1,3 @@
-- Add email and span columns to audit table
ALTER TABLE audit ADD COLUMN email VARCHAR(50);
ALTER TABLE audit ADD COLUMN span VARCHAR(255);