mirror of
https://github.com/goharbor/harbor.git
synced 2025-02-13 10:21:25 +01:00
9 lines
267 B
MySQL
9 lines
267 B
MySQL
|
/** Add table for immutable tag **/
|
||
|
CREATE TABLE immutable_tag_rule
|
||
|
(
|
||
|
id SERIAL PRIMARY KEY NOT NULL,
|
||
|
project_id int NOT NULL,
|
||
|
tag_filter text,
|
||
|
enabled boolean default true NOT NULL,
|
||
|
creation_time timestamp default CURRENT_TIMESTAMP
|
||
|
)
|