13 lines
250 B
SQL
13 lines
250 B
SQL
-- +goose Up
|
|
-- +goose StatementBegin
|
|
ALTER TABLE users
|
|
ADD COLUMN avatar_verified BOOLEAN NOT NULL DEFAULT FALSE;
|
|
|
|
-- +goose StatementEnd
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
ALTER TABLE users
|
|
DROP COLUMN avatar_verified;
|
|
|
|
-- +goose StatementEnd
|