mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-25 03:35:21 +01:00
438d4c03bb
Signed-off-by: wang yan <wangyan@vmware.com>
6 lines
257 B
SQL
6 lines
257 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);
|