mirror of
https://github.com/slawkens/myaac.git
synced 2025-11-03 17:26:23 +01:00
Refactor migrations with $up & $down
This commit is contained in:
@@ -1,3 +1,12 @@
|
||||
<?php
|
||||
/**
|
||||
* @var OTS_DB_MySQL $db
|
||||
*/
|
||||
|
||||
$db->exec('DROP TABLE IF EXISTS `' . TABLE_PREFIX . 'items`;');
|
||||
$up = function () use ($db) {
|
||||
$db->dropTable(TABLE_PREFIX . 'items');
|
||||
};
|
||||
|
||||
$down = function () use ($db) {
|
||||
$db->exec(file_get_contents(__DIR__ . '/24-items.sql'));
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user