mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-25 19:56:09 +01:00
7 lines
333 B
SQL
7 lines
333 B
SQL
/*
|
|
Add new column creator_ref and creator_type for robot table to record the creator information of the robot
|
|
*/
|
|
ALTER TABLE robot ADD COLUMN IF NOT EXISTS creator_ref integer default 0;
|
|
ALTER TABLE robot ADD COLUMN IF NOT EXISTS creator_type varchar(255);
|
|
|
|
ALTER TABLE p2p_preheat_policy ADD COLUMN IF NOT EXISTS scope varchar(255); |