id(); $table->string('mid')->comment('量表ID')->index(); $table->string('title')->comment('量表名称')->index(); $table->string('name')->comment('英文缩写')->index(); $table->string('mc_title')->comment('分类名称')->nullable(); $table->string('image_icon')->comment('图片')->nullable(); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('third_scales'); } }