harbor/make/migrations/postgresql/0015_1.10.0_schema.up.sql

9 lines
267 B
MySQL
Raw Normal View History

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