apskel-pos-backend/migrations/000012_add_email_phone_to_organizations.down.sql
aditya.siregar 4f5950543e init
2025-07-18 20:10:29 +07:00

8 lines
336 B
SQL

-- Remove indexes for email and phone_number columns
DROP INDEX IF EXISTS idx_organizations_email;
DROP INDEX IF EXISTS idx_organizations_phone_number;
-- Remove email and phone_number columns from organizations table
ALTER TABLE organizations DROP COLUMN IF EXISTS email;
ALTER TABLE organizations DROP COLUMN IF EXISTS phone_number;