owners
This commit is contained in:
28
resources/sql/patches/018.owners.sql
Normal file
28
resources/sql/patches/018.owners.sql
Normal file
@@ -0,0 +1,28 @@
|
||||
CREATE DATABASE phabricator_owners;
|
||||
|
||||
CREATE TABLE phabricator_owners.onwners_package (
|
||||
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 phabricator_owners.owners_owner (
|
||||
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 phabricator_owners.owners_path (
|
||||
id int unsigned not null auto_increment primary key,
|
||||
packageID int unsigned not null,
|
||||
key(packageID),
|
||||
repositoryPHID varchar(64) binary not null,
|
||||
path varchar(255) not null,
|
||||
unique key (repositoryPHID, path)
|
||||
);
|
||||
Reference in New Issue
Block a user