2025-03-16 08:41:46 +01:00

24 lines
383 B
PHP

<?php
/**
* @var OTS_DB_MySQL $db
*/
$up = function () use ($db) {
$db->dropTable(TABLE_PREFIX . 'hooks');
$cache = app()->get('cache');
if($cache->enabled()) {
$cache->delete('hooks');
}
};
$down = function () use ($db) {
$db->exec(file_get_contents(__DIR__ . '/28-hooks.sql'));
$cache = app()->get('cache');
if($cache->enabled()) {
$cache->delete('hooks');
}
};