PHP code example of nhzex / think-phinx
1. Go to this page and download the library: Download nhzex/think-phinx 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/ */
nhzex / think-phinx example snippets
return [
'paths' => [
'migrations' => [
'DbMigrations' => 'database/migrations',
],
'seeds' => [
'DbSeeds' => 'database/seeds'
]
],
'environments' => [
'default_migration_table' => '_phinxlog',
],
'version_order' => 'creation'
];