feat: add profile_picture field to user table

This commit is contained in:
2025-05-24 17:17:16 +02:00
parent b6d365cc48
commit 9b0de4512b
2 changed files with 16 additions and 0 deletions

View File

@ -0,0 +1,11 @@
-- +goose Up
-- +goose StatementBegin
ALTER TABLE users
ADD profile_picture TEXT;
-- +goose StatementEnd
-- +goose Down
-- +goose StatementBegin
ALTER TABLE users
DROP COLUMN profile_picture;
-- +goose StatementEnd