Laravel migrations: Class “not found”

前端 未结 16 1537
自闭症患者
自闭症患者 2020-12-12 14:38

I am deploying a Laravel barebone project to Microsoft Azure, but whenever I try to execute php artisan migrate I get the error:

[2015-06-13

16条回答
  •  没有蜡笔的小新
    2020-12-12 15:22

    Make sure your migrations filename matches with migration class name

    FOR EXAMPLE:

    If name of migration is:

    2020_10_31_161839_create_notifications_table

    Then the class name should be:

    CreateNotificationsTable

提交回复
热议问题