Path: blob/master/resources/sql/patches/000.project.sql
12250 views
create table {$NAMESPACE}_project.project (1id int unsigned not null auto_increment primary key,2name varchar(255) COLLATE `binary` not null,3unique key (name),4phid varchar(64) binary not null,5authorPHID varchar(64) binary not null,6dateCreated int unsigned not null,7dateModified int unsigned not null8);9create table {$NAMESPACE}_project.project_profile (10id int unsigned not null auto_increment primary key,11projectPHID varchar(64) binary not null,12unique key (projectPHID),13blurb longtext not null,14profileImagePHID varchar(64) binary,15dateCreated int unsigned not null,16dateModified int unsigned not null17);18create table {$NAMESPACE}_project.project_affiliation (19id int unsigned not null auto_increment primary key,20projectPHID varchar(64) binary not null,21userPHID varchar(64) binary not null,22unique key (projectPHID, userPHID),23key (userPHID),24role varchar(255) not null,25status varchar(32) not null,26dateCreated int unsigned not null,27dateModified int unsigned not null28);293031