init
This commit is contained in:
@@ -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);
|
||||
Reference in New Issue
Block a user