github.com/0xPolygon/supernets2-node@v0.0.0-20230711153321-2fe574524eaa/db/migrations/state/0006.sql (about)

     1  -- +migrate Up
     2  ALTER TABLE state.batch
     3      ADD COLUMN batch_resources JSONB,
     4      ADD COLUMN closing_reason VARCHAR;
     5  
     6  -- +migrate Down
     7  ALTER TABLE state.batch
     8      DROP COLUMN batch_resources,
     9      DROP COLUMN closing_reason;