Skip to content

Fresh install is broken due to wrong order of migrations #46

Open
@mjess

Description

@mjess

Subject of the issue

On a fresh install of v4.0.0 in a fresh laravel project the migration fails.
Seems like both the "add_parameters_to_route_statistics_table" and "create_route_statistics_table" get created with exactly the same timestamp and thus the "add" one is run before the "create" one.

Your environment

Windows 10
Laravel v11.5.0
Laravel-route-statistics v4.0.0

Steps to reproduce

laravel new example-app
cd example-app
composer require bilfeldt/laravel-route-statistics
php artisan vendor:publish --provider="Bilfeldt\LaravelRouteStatistics\LaravelRouteStatisticsServiceProvider" --tag="migrations"
php artisan migrate

Expected behaviour

Migration should pass

Actual behaviour

PDOException::("SQLSTATE[42S02]: Base table or view not found: 1146 Table 'example_app.route_statistics' doesn't exist")

grafik

I could fix this on my end by giving new timestamps to the migration filenames and thus bring them in the correct order.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions