increments('id'); $table->unsignedInteger('cate_id')->comment('单项所属类目'); $table->string('name')->comment('单项名称'); $table->decimal('oldPrice')->comment('原价'); $table->decimal('realPrice')->comment('现价'); $table->unsignedInteger('sort')->comment('排序'); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('single_project'); } }