Laravel无法进行任何迁移。 SQL 42000错误。迁移刷新,重置,回滚均无效

时间:2018-10-15 05:57:47

标签: mysql laravel artisan migrate

这是尝试进行迁移时的错误:  SQLSTATE [42000]:语法错误或访问冲突:1064 SQL语法有错误;请查看与您的MySQL服务器版本相对应的手册,以获取在语法1处'by <?php $str = "1111 2222 3333 4444 asdfasf 1111 2222 "; echo preg_replace("/(^|(.)(?!\2))(\d)\3{3}(?!\3)/","<span class='background- color:yellow'>$1</span>",$str); asc,batch asc'附近使用正确的语法

代理商迁移:

migration

用户迁移

Schema::create('agents', function (Blueprint $table) {
    $table->increments('id');
    $table->string('first_name');
    $table->string('last_name');
    $table->string('phone');

    $table->string('email')->unique();

   $table->string('password');

    $table->string('agency_name')->nullable();

    $table->string('address');

    $table->string('city');

    $table->string('zip_code');


    $table->string('status');

    $table->timestamps();

这不是迁移问题。我删除了所有迁移,并尝试重置并刷新该错误。我删除了所有表,并尝试仅迁移一个表,即Laravel用户迁移。仍然是错误。

0 个答案:

没有答案