Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F119325184
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
Thu, Jun 26, 03:26
Size
549 B
Mime Type
text/x-php
Expires
Sat, Jun 28, 03:26 (2 d)
Engine
blob
Format
Raw Data
Handle
27004686
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