mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-01 06:33:41 +01:00
6 lines
225 B
MySQL
6 lines
225 B
MySQL
|
/*
|
||
|
Add new column creator for robot table to add a new column to record the creator of the robot
|
||
|
*/
|
||
|
ALTER TABLE robot ADD COLUMN IF NOT EXISTS creator varchar(255);
|
||
|
UPDATE robot SET creator = 'unknown' WHERE creator IS NULL;
|