PHP code example of atomjoy / migratio
1. Go to this page and download the library: Download atomjoy/migratio 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/ */
atomjoy / migratio example snippets
sh
php artisan make:migration create_posts_table --path=/database/migrations/posts
sh
# all subdirectories
php artisan migrate
# from single subdir
php artisan migrate --path=/database/migrations/posts
sh
php artisan serve --host=localhost --port=8000