12 lines
216 B
SQL
12 lines
216 B
SQL
-- +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
|