This commit is contained in:
aditya.siregar
2025-07-18 20:10:29 +07:00
parent 1bceae010b
commit 4f5950543e
511 changed files with 24132 additions and 34137 deletions
@@ -0,0 +1,7 @@
-- Add email and phone_number columns to organizations table
ALTER TABLE organizations ADD COLUMN email VARCHAR(255);
ALTER TABLE organizations ADD COLUMN phone_number VARCHAR(20);
-- Create indexes for email and phone_number columns
CREATE INDEX idx_organizations_email ON organizations(email);
CREATE INDEX idx_organizations_phone_number ON organizations(phone_number);