mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-14 08:28:02 -05:00
16 lines
251 B
SQL
16 lines
251 B
SQL
-- +goose Up
|
|
-- +goose StatementBegin
|
|
|
|
ALTER TABLE l1_block
|
|
ADD COLUMN blob_base_fee BIGINT DEFAULT 0;
|
|
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
|
|
ALTER TABLE IF EXISTS l1_block
|
|
DROP COLUMN blob_base_fee;
|
|
|
|
-- +goose StatementEnd
|