Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F18794599
000.project.sql
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
000.project.sql
View Options
create
table
{$
NAMESPACE
}
_project
.
project
(
id
int
unsigned
not
null
auto_increment
primary
key
,
name
varchar
(
255
)
COLLATE
`
binary
`
not
null
,
unique
key
(
name
),
phid
varchar
(
64
)
binary
not
null
,
authorPHID
varchar
(
64
)
binary
not
null
,
dateCreated
int
unsigned
not
null
,
dateModified
int
unsigned
not
null
);
create
table
{$
NAMESPACE
}
_project
.
project_profile
(
id
int
unsigned
not
null
auto_increment
primary
key
,
projectPHID
varchar
(
64
)
binary
not
null
,
unique
key
(
projectPHID
),
blurb
longtext
not
null
,
profileImagePHID
varchar
(
64
)
binary
,
dateCreated
int
unsigned
not
null
,
dateModified
int
unsigned
not
null
);
create
table
{$
NAMESPACE
}
_project
.
project_affiliation
(
id
int
unsigned
not
null
auto_increment
primary
key
,
projectPHID
varchar
(
64
)
binary
not
null
,
userPHID
varchar
(
64
)
binary
not
null
,
unique
key
(
projectPHID
,
userPHID
),
key
(
userPHID
),
role
varchar
(
255
)
not
null
,
status
varchar
(
32
)
not
null
,
dateCreated
int
unsigned
not
null
,
dateModified
int
unsigned
not
null
);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Oct 19, 12:01 AM (1 d, 2 h)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
8281943
Default Alt Text
000.project.sql (1 KB)
Attached To
Mode
rP Phabricator
Attached
Detach File
Event Timeline
Log In to Comment