Skip to content

13.7.1

Choose a tag to compare

@takielias takielias released this 05 Sep 06:30
· 2 commits to main since this release
e7d5ac0

Corrects the install instructions added in 13.7.0.

Fixed

  • 13.7.0 added php artisan migrate to the steps printed after tablar:install, but put it before tablar:export-auth. The migrations are published by tablar:export-auth, not by the installer, so running migrate at that point had nothing to apply and you were still left with two pending migrations. Since the installer also adds the SoftDeletes trait to your User model, the first person to register still hit a 500 with Unknown column 'users.deleted_at'.

The order is now tablar:export-auth, then php artisan migrate, then the npm steps. tablar:export-auth also prints the migrate reminder itself, since it is the command that writes the files.

If you installed with 13.7.0 and followed the printed steps, check for pending migrations:

php artisan migrate:status
php artisan migrate

Requires PHP 8.3+, Laravel 12 or 13, Node 20.19+.

composer update takielias/tablar