id(); $table->string('code',20)->unique()->comment('编号'); $table->string('name',50)->comment('名称'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('materials'); } }