mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
10 lines
207 B
PHP
10 lines
207 B
PHP
|
<?php
|
||
|
|
||
|
$table = new PhabricatorProfileMenuItemConfiguration();
|
||
|
$conn_w = $table->establishConnection('w');
|
||
|
|
||
|
queryfx(
|
||
|
$conn_w,
|
||
|
'DELETE FROM %T WHERE menuItemKey = "motivator"',
|
||
|
$table->getTableName());
|