1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 09:18:48 +02:00
phorge-phorge/resources/sql/patches/018.owners.sql

26 lines
748 B
MySQL
Raw Normal View History

CREATE TABLE {$NAMESPACE}_owners.owners_package (
2011-04-03 23:48:36 +02:00
id int unsigned not null auto_increment primary key,
phid varchar(64) binary not null,
unique key(phid),
name varchar(255) not null,
unique key(name),
description text not null,
primaryOwnerPHID varchar(64) binary
);
CREATE TABLE {$NAMESPACE}_owners.owners_owner (
2011-04-03 23:48:36 +02:00
id int unsigned not null auto_increment primary key,
packageID int unsigned not null,
userPHID varchar(64) binary not null,
UNIQUE KEY(packageID, userPHID),
KEY(userPHID)
);
CREATE TABLE {$NAMESPACE}_owners.owners_path (
2011-04-03 23:48:36 +02:00
id int unsigned not null auto_increment primary key,
packageID int unsigned not null,
key(packageID),
repositoryPHID varchar(64) binary not null,
2011-04-04 07:03:27 +02:00
path varchar(255) not null
);