7 lines
211 B
SQL
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"; |