mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-22 16:48:30 +01:00
29d2bcce99
Signed-off-by: stonezdj <stonezdj@gmail.com>
9 lines
267 B
SQL
9 lines
267 B
SQL
/** 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
|
|
) |