Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F568478
PhabricatorFactManagementDestroyWorkflow.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorFactManagementDestroyWorkflow.php
View Options
<?php
final
class
PhabricatorFactManagementDestroyWorkflow
extends
PhabricatorFactManagementWorkflow
{
protected
function
didConstruct
()
{
$this
->
setName
(
'destroy'
)
->
setSynopsis
(
pht
(
'Destroy all facts.'
))
->
setArguments
(
array
());
}
public
function
execute
(
PhutilArgumentParser
$args
)
{
$console
=
PhutilConsole
::
getConsole
();
$question
=
pht
(
'Really destroy all facts? They will need to be rebuilt through '
.
'analysis, which may take some time.'
);
$ok
=
$console
->
confirm
(
$question
,
$default
=
false
);
if
(!
$ok
)
{
return
1
;
}
$tables
=
array
();
$tables
[]
=
new
PhabricatorFactCursor
();
$tables
[]
=
new
PhabricatorFactIntDatapoint
();
$tables
[]
=
new
PhabricatorFactObjectDimension
();
$tables
[]
=
new
PhabricatorFactKeyDimension
();
foreach
(
$tables
as
$table
)
{
$conn
=
$table
->
establishConnection
(
'w'
);
$name
=
$table
->
getTableName
();
$console
->
writeOut
(
"%s
\n
"
,
pht
(
"Destroying table '%s'..."
,
$name
));
queryfx
(
$conn
,
'TRUNCATE TABLE %T'
,
$name
);
}
$console
->
writeOut
(
"%s
\n
"
,
pht
(
'Done.'
));
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, May 13, 1:28 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
96808
Default Alt Text
PhabricatorFactManagementDestroyWorkflow.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment