harbor/make/migrations/postgresql/0150_2.12.0_schema.up.sql

6 lines
225 B
MySQL
Raw Normal View History

/*
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;