mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-12 08:23:48 +02:00
8 lines
142 B
SQL
8 lines
142 B
SQL
-- +migrate Up
|
|
|
|
ALTER TABLE builds ADD COLUMN build_parent INTEGER DEFAULT 0;
|
|
|
|
-- +migrate Down
|
|
|
|
ALTER TABLE builds DROP COLUMN build_parent;
|