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