PHP code example of levizoesch / laravel-check-migrations

1. Go to this page and download the library: Download levizoesch/laravel-check-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/ */

    

levizoesch / laravel-check-migrations example snippets


database
└── migrations
├── 2023_01_01
│ ├── 20230101000001_create_table_one.php
│ └── 20230101000002_create_table_two.php
└── 2023_02_01
├── 20230201000001_create_table_three.php
└── 20230201000002_create_table_four.php

bash
php artisan check-migrations
bash
php artisan check-migrations --skip
bash
php artisan check-migrations --ignore=20230101000000_create_example_table