PHP code example of formal / migrations
1. Go to this page and download the library: Download formal/migrations 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/ */
formal / migrations example snippets
use Formal\Migrations\Factory;
use Innmind\OperatingSystem\Factory as OS;
use Innmind\Url\{
Url,
Path,
};
$dsn = Url::of('mysql://user:[email protected]:3306/database');
Factory::of(OS::build())
->storeVersionsInDatabase($dsn)
->sql()
->files(Path::of('migrations/folder/'))
->migrate($dsn)
->match(
static fn() => print('Everything has been migrated'),
static fn(\Throwable $error) => printf(
'Migrations failed with the message : %s',
$error->getMessage(),
),
);