-- Add Google Place ID and Twitter columns to studios table
ALTER TABLE studios
    ADD COLUMN google_place_id VARCHAR(100) AFTER google_profile,
    ADD COLUMN twitter VARCHAR(500) AFTER youtube;
