Closed Artnforces closed 6 years ago
Actually, in the migration file Datetime_Add_Street_Extra_To_Addreses.php: The Classname is :
/** * Class AddStreetExtraToAddresses */ class AddStreetExtraToAddresses extends Migration {
This generate an error when running the php artisan migrate command :
In Migrator.php line 418: Class 'AddStreetExtraToAddressesTable' not found
In Migrator.php line 418:
Class 'AddStreetExtraToAddressesTable' not found
By adding Table at the end of the name of the class resolve the problem class AddStreetExtraToAddressesTable
class AddStreetExtraToAddressesTable
Sorry, my bad. I've fixed that.
Actually, in the migration file Datetime_Add_Street_Extra_To_Addreses.php: The Classname is :
This generate an error when running the php artisan migrate command :
By adding Table at the end of the name of the class resolve the problem
class AddStreetExtraToAddressesTable