increments('id'); $table->string('name')->comment('套餐名称'); $table->longText('content')->comment('套餐内容'); $table->decimal('oldPrice')->comment('原价'); $table->decimal('realPrice')->comment('现价'); $table->decimal('sort')->comment('排序'); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('combo'); } }