liam-linux-account-manager/migrations/001.php
2021-11-16 15:11:32 +01:00

11 lines
231 B
PHP

<?php
$migration_name = 'Add migration support';
$this->database->query("
CREATE TABLE `migration` (
`id` int(10) unsigned NOT NULL,
`name` text NOT NULL,
`applied` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4
");