sno-quiz/backend/migrations/002_add_photo_url_to_users.sql
2025-09-17 22:22:14 +03:00

7 lines
211 B
SQL

-- +goose Up
-- Add photo_url field to users table
ALTER TABLE "users" ADD COLUMN "photo_url" VARCHAR(255);
-- +goose Down
-- Remove photo_url field from users table
ALTER TABLE "users" DROP COLUMN "photo_url";