mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-04 17:49:48 +01:00
182 lines
5.1 KiB
MySQL
182 lines
5.1 KiB
MySQL
|
create table access (
|
||
|
access_id INTEGER PRIMARY KEY,
|
||
|
access_code char(1),
|
||
|
comment varchar (30)
|
||
|
);
|
||
|
|
||
|
insert into access (access_code, comment) values
|
||
|
('M', 'Management access for project'),
|
||
|
('R', 'Read access for project'),
|
||
|
('W', 'Write access for project'),
|
||
|
('D', 'Delete access for project'),
|
||
|
('S', 'Search access for project');
|
||
|
|
||
|
|
||
|
create table role (
|
||
|
role_id INTEGER PRIMARY KEY,
|
||
|
role_mask int DEFAULT 0 NOT NULL,
|
||
|
role_code varchar(20),
|
||
|
name varchar (20)
|
||
|
);
|
||
|
/*
|
||
|
role mask is used for future enhancement when a project member can have multi-roles
|
||
|
currently set to 0
|
||
|
*/
|
||
|
|
||
|
insert into role (role_code, name) values
|
||
|
('MDRWS', 'projectAdmin'),
|
||
|
('RWS', 'developer'),
|
||
|
('RS', 'guest');
|
||
|
|
||
|
|
||
|
create table user (
|
||
|
user_id INTEGER PRIMARY KEY,
|
||
|
/*
|
||
|
The max length of username controlled by API is 20,
|
||
|
and 11 is reserved for marking the deleted users.
|
||
|
The mark of deleted user is "#user_id".
|
||
|
The 11 consist of 10 for the max value of user_id(4294967295)
|
||
|
in MySQL and 1 of '#'.
|
||
|
*/
|
||
|
username varchar(32),
|
||
|
/*
|
||
|
11 bytes is reserved for marking the deleted users.
|
||
|
*/
|
||
|
email varchar(255),
|
||
|
password varchar(40) NOT NULL,
|
||
|
realname varchar (20) NOT NULL,
|
||
|
comment varchar (30),
|
||
|
deleted tinyint (1) DEFAULT 0 NOT NULL,
|
||
|
reset_uuid varchar(40) DEFAULT NULL,
|
||
|
salt varchar(40) DEFAULT NULL,
|
||
|
sysadmin_flag tinyint (1),
|
||
|
creation_time timestamp,
|
||
|
update_time timestamp,
|
||
|
UNIQUE (username),
|
||
|
UNIQUE (email)
|
||
|
);
|
||
|
|
||
|
insert into user (username, email, password, realname, comment, deleted, sysadmin_flag, creation_time, update_time) values
|
||
|
('admin', 'admin@example.com', '', 'system admin', 'admin user',0, 1, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP),
|
||
|
('anonymous', 'anonymous@example.com', '', 'anonymous user', 'anonymous user', 1, 0, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP);
|
||
|
|
||
|
create table project (
|
||
|
project_id INTEGER PRIMARY KEY,
|
||
|
owner_id int NOT NULL,
|
||
|
/*
|
||
|
The max length of name controlled by API is 30,
|
||
|
and 11 is reserved for marking the deleted project.
|
||
|
*/
|
||
|
name varchar (41) NOT NULL,
|
||
|
creation_time timestamp,
|
||
|
update_time timestamp,
|
||
|
deleted tinyint (1) DEFAULT 0 NOT NULL,
|
||
|
public tinyint (1) DEFAULT 0 NOT NULL,
|
||
|
FOREIGN KEY (owner_id) REFERENCES user(user_id),
|
||
|
UNIQUE (name)
|
||
|
);
|
||
|
|
||
|
insert into project (owner_id, name, creation_time, update_time, public) values
|
||
|
(1, 'library', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 1);
|
||
|
|
||
|
create table project_member (
|
||
|
project_id int NOT NULL,
|
||
|
user_id int NOT NULL,
|
||
|
role int NOT NULL,
|
||
|
creation_time timestamp,
|
||
|
update_time timestamp,
|
||
|
PRIMARY KEY (project_id, user_id),
|
||
|
FOREIGN KEY (role) REFERENCES role(role_id),
|
||
|
FOREIGN KEY (project_id) REFERENCES project(project_id),
|
||
|
FOREIGN KEY (user_id) REFERENCES user(user_id)
|
||
|
);
|
||
|
|
||
|
insert into project_member (project_id, user_id, role, creation_time, update_time) values
|
||
|
(1, 1, 1, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP);
|
||
|
|
||
|
create table access_log (
|
||
|
log_id INTEGER PRIMARY KEY,
|
||
|
user_id int NOT NULL,
|
||
|
project_id int NOT NULL,
|
||
|
repo_name varchar (256),
|
||
|
repo_tag varchar (128),
|
||
|
GUID varchar(64),
|
||
|
operation varchar(20) NOT NULL,
|
||
|
op_time timestamp,
|
||
|
FOREIGN KEY (user_id) REFERENCES user(user_id),
|
||
|
FOREIGN KEY (project_id) REFERENCES project (project_id)
|
||
|
);
|
||
|
|
||
|
CREATE INDEX pid_optime ON access_log (project_id, op_time);
|
||
|
|
||
|
create table repository (
|
||
|
repository_id INTEGER PRIMARY KEY,
|
||
|
name varchar(255) NOT NULL,
|
||
|
project_id int NOT NULL,
|
||
|
owner_id int NOT NULL,
|
||
|
description text,
|
||
|
pull_count int DEFAULT 0 NOT NULL,
|
||
|
star_count int DEFAULT 0 NOT NULL,
|
||
|
creation_time timestamp default CURRENT_TIMESTAMP,
|
||
|
update_time timestamp default CURRENT_TIMESTAMP,
|
||
|
FOREIGN KEY (owner_id) REFERENCES user(user_id),
|
||
|
FOREIGN KEY (project_id) REFERENCES project(project_id),
|
||
|
UNIQUE (name)
|
||
|
);
|
||
|
|
||
|
create table replication_policy (
|
||
|
id INTEGER PRIMARY KEY,
|
||
|
name varchar(256),
|
||
|
project_id int NOT NULL,
|
||
|
target_id int NOT NULL,
|
||
|
enabled tinyint(1) NOT NULL DEFAULT 1,
|
||
|
description text,
|
||
|
deleted tinyint (1) DEFAULT 0 NOT NULL,
|
||
|
cron_str varchar(256),
|
||
|
start_time timestamp NULL,
|
||
|
creation_time timestamp default CURRENT_TIMESTAMP,
|
||
|
update_time timestamp default CURRENT_TIMESTAMP
|
||
|
);
|
||
|
|
||
|
create table replication_target (
|
||
|
id INTEGER PRIMARY KEY,
|
||
|
name varchar(64),
|
||
|
url varchar(64),
|
||
|
username varchar(40),
|
||
|
password varchar(128),
|
||
|
/*
|
||
|
target_type indicates the type of target registry,
|
||
|
0 means it's a harbor instance,
|
||
|
1 means it's a regulart registry
|
||
|
*/
|
||
|
target_type tinyint(1) NOT NULL DEFAULT 0,
|
||
|
creation_time timestamp default CURRENT_TIMESTAMP,
|
||
|
update_time timestamp default CURRENT_TIMESTAMP
|
||
|
);
|
||
|
|
||
|
create table replication_job (
|
||
|
id INTEGER PRIMARY KEY,
|
||
|
status varchar(64) NOT NULL,
|
||
|
policy_id int NOT NULL,
|
||
|
repository varchar(256) NOT NULL,
|
||
|
operation varchar(64) NOT NULL,
|
||
|
tags varchar(16384),
|
||
|
creation_time timestamp default CURRENT_TIMESTAMP,
|
||
|
update_time timestamp default CURRENT_TIMESTAMP
|
||
|
);
|
||
|
|
||
|
CREATE INDEX policy ON replication_job (policy_id);
|
||
|
CREATE INDEX poid_uptime ON replication_job (policy_id, update_time);
|
||
|
|
||
|
create table properties (
|
||
|
k varchar(64) NOT NULL,
|
||
|
v varchar(128) NOT NULL,
|
||
|
primary key (k)
|
||
|
);
|
||
|
|
||
|
create table alembic_version (
|
||
|
version_num varchar(32) NOT NULL
|
||
|
);
|
||
|
|
||
|
insert into alembic_version values ('0.3.0');
|