1. Go to this page and download the library: Download shasoft/db-schema library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
// Получить миграции
$migrations = DbSchemaMigrations::get([
// Класс таблицы
TabExample::class,
],
// Драйвер для получения миграций
DbSchemaDriverMySql::class
);
// Создать PDO соединение
$pdo = new \PDO(
'mysql:dbname=cmg-db-test;host=localhost',
'root'
);
// Выполнить миграции
$migrations->run($pdo);