8 lines
373 B
SQL
8 lines
373 B
SQL
-- 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);
|