PHP artisan迁移不创建新表

前端之家收集整理的这篇文章主要介绍了PHP artisan迁移不创建新表前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是Laravel的新手,我正在关注Laravel Documentations以及一些教程视频.但是,我在我的本地CMD提示符中运行这个PHP artisan迁移代码,而不是在PHPmyadmin中创建数据库表.在stackoverflow中还有其他几个与此相关的类似主题,但没有解决我的问题.请不要标记此副本.

好吧,它是这样的.我运行这段代码

PHP artisan make:migration create_student_table --create=student

并在迁移文件夹中创建新文件,如2016_04_08_061507_create_student_table.PHP

然后在该文件中我运行此代码

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

    class CreateStudentTable extends Migration
    {
        /**
         * Run the migrations.
         *
         * @return void
         */
        public function up()
        {
            Schema::create('student',function (Blueprint $table) {
                $table->increments('id');
                $table->timestamps();
                $table->string('name',20); 
                $table->string('email',255);
            });
        }

        /**
         * Reverse the migrations.
         *
         * @return void
         */
        public function down()
        {
            Schema::drop('student');
        }
    }

然后在cmd我运行PHP artisan migrate但它没有创建学生表.相反,它显示此消息

[PDOException] sqlSTATE[42S01]: Base table or view already exists:
1050 Table ‘users’ already exists

几天前我使用类似的方法创建了用户表.但是没有创建新的学生表.我在这里遗漏了什么?
提前致谢.

这意味着Laravel首先尝试运行users表迁移.如果您正在开发中并且不需要保留数据,则可以删除users表,然后运行PHP artisan migrate
原文链接:https://www.f2er.com/php/137758.html

猜你在找的PHP相关文章