Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99653468
PhabricatorProjectSlug.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Jan 26, 00:16
Size
549 B
Mime Type
text/x-php
Expires
Tue, Jan 28, 00:16 (2 d)
Engine
blob
Format
Raw Data
Handle
23839212
Attached To
rPH Phabricator
PhabricatorProjectSlug.php
View Options
<?php
final
class
PhabricatorProjectSlug
extends
PhabricatorProjectDAO
{
protected
$slug
;
protected
$projectPHID
;
public
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'slug'
=>
'text128'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'key_slug'
=>
array
(
'columns'
=>
array
(
'slug'
),
'unique'
=>
true
,
),
'key_projectPHID'
=>
array
(
'columns'
=>
array
(
'projectPHID'
),
),
),
)
+
parent
::
getConfiguration
();
}
}
Event Timeline
Log In to Comment