PHP code example of kriptonic / php-database-migration
1. Go to this page and download the library: Download kriptonic/php-database-migration 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/ */
kriptonic / php-database-migration example snippets
#!/usr/bin/php
'working_path' => __DIR__ . '/custom_dir',
'migration_path' => __DIR__ . '/custom_dir/migrations',
'environment_path' => __DIR__ . '/custom_dir/environments'
);
$app = new Migrate\Manager($config);
// Add custom commands here.
// $app->add(new MyCustomCommand());
$app->run();