38682-vm/db/migrations/016_add_profile_pic_to_users.sql
2026-02-23 13:39:33 +00:00

3 lines
121 B
SQL

-- Add profile_pic column to users table
ALTER TABLE users ADD COLUMN profile_pic VARCHAR(255) DEFAULT NULL AFTER email;