mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-04-23 03:00:50 -04:00
15 lines
245 B
SQL
15 lines
245 B
SQL
-- +goose Up
|
|
-- +goose StatementBegin
|
|
|
|
ALTER TABLE prover_task
|
|
ADD COLUMN metadata BYTEA;
|
|
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
|
|
ALTER TABLE IF EXISTS prover_task
|
|
DROP COLUMN IF EXISTS metadata;
|
|
|
|
-- +goose StatementEnd |