Laravel 创建指定表 migrate
Posted 明明一颗大白菜
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Laravel 创建指定表 migrate相关的知识,希望对你有一定的参考价值。
解决方案:
打开创建表的那个 migration 文件,在创建表的方法执行之前加一个判断条件
if (!Schema::hasTable(‘password_resets‘)) { Schema::create(‘password_resets‘, function (Blueprint $table) { $table->string(‘email‘)->index(); $table->string(‘token‘); $table->timestamp(‘created_at‘)->nullable(); }); }
以上是关于Laravel 创建指定表 migrate的主要内容,如果未能解决你的问题,请参考以下文章
Laravel Artisan Migrate 命令创建表但不将每个迁移文件填充到迁移表