mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-10 06:28:04 -05:00
Co-authored-by: Ömer Faruk Irmak <omerfirmak@gmail.com> Co-authored-by: noelwei <fan@scroll.io> Co-authored-by: colin <102356659+colinlyguo@users.noreply.github.com> Co-authored-by: Rohit Narurkar <rohit.narurkar@proton.me> Co-authored-by: colinlyguo <colinlyguo@scroll.io> Co-authored-by: Péter Garamvölgyi <peter@scroll.io> Co-authored-by: Morty <70688412+yiweichi@users.noreply.github.com> Co-authored-by: omerfirmak <omerfirmak@users.noreply.github.com> Co-authored-by: jonastheis <jonastheis@users.noreply.github.com> Co-authored-by: georgehao <georgehao@users.noreply.github.com>
27 lines
656 B
SQL
27 lines
656 B
SQL
-- +goose Up
|
|
-- +goose StatementBegin
|
|
|
|
ALTER TABLE chunk
|
|
ADD COLUMN prev_l1_message_queue_hash VARCHAR DEFAULT '',
|
|
ADD COLUMN post_l1_message_queue_hash VARCHAR DEFAULT '';
|
|
|
|
ALTER TABLE batch
|
|
ADD COLUMN prev_l1_message_queue_hash VARCHAR DEFAULT '',
|
|
ADD COLUMN post_l1_message_queue_hash VARCHAR DEFAULT '';
|
|
|
|
|
|
-- +goose StatementEnd
|
|
|
|
-- +goose Down
|
|
-- +goose StatementBegin
|
|
|
|
ALTER TABLE IF EXISTS chunk
|
|
DROP COLUMN IF EXISTS prev_l1_message_queue_hash,
|
|
DROP COLUMN IF EXISTS post_l1_message_queue_hash;
|
|
|
|
ALTER TABLE IF EXISTS batch
|
|
DROP COLUMN IF EXISTS prev_l1_message_queue_hash,
|
|
DROP COLUMN IF EXISTS post_l1_message_queue_hash;
|
|
|
|
-- +goose StatementEnd
|