liam-linux-account-manager/migrations/001.php

11 lines
231 B
PHP
Raw Normal View History

2021-11-16 15:11:32 +01:00
<?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
");