Advertisement
Guest User

Untitled

a guest
Mar 29th, 2019
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. $ php artisan migrate
  2. PHP Fatal error: Cannot declare class CreateRoleUserTable, because the name is already in use in C:\laragon\www\laravel-project\database\migrations\2019_03_29_113441_create_role_user_table.php on line 34
  3.  
  4. Symfony\Component\Debug\Exception\FatalErrorException : Cannot declare class CreateRoleUserTable, because the name is already in use
  5.  
  6. at C:\laragon\www\laravel-project\database\migrations\2019_03_29_113441_create_role_user_table.php:34
  7. 30| public function down()
  8. 31| {
  9. 32| Schema::dropIfExists('role_user');
  10. 33| }
  11. > 34| }
  12. 35|
  13.  
  14.  
  15. Whoops\Exception\ErrorException : Cannot declare class CreateRoleUserTable, because the name is already in use
  16.  
  17. at C:\laragon\www\laravel-project\database\migrations\2019_03_29_113441_create_role_user_table.php:34
  18. 30| public function down()
  19. 31| {
  20. 32| Schema::dropIfExists('role_user');
  21. 33| }
  22. > 34| }
  23. 35|
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement