increments('id'); $table->string('ename',50)->comment('调用英文名'); $table->text('content')->nullable()->comment('值'); $table->unique(['ename']);//唯一索引 }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('configs'); } }