LukePOLO\LaraCart\LaraCartServiceProvider::migrationHasAlreadyBeenPublished PHP Method

migrationHasAlreadyBeenPublished() protected method

Checks to see if the migration has already been published.
    protected function migrationHasAlreadyBeenPublished()
    {
        $files = glob(database_path('migrations/*_add_cart_session_id_to_users_table.php'));
        return count($files) > 0;
    }