bigIncrements('id'); $table->string('name')->nullable()->comment('视频分组id'); $table->integer('status')->default(1)->comment('状态 1正常 0禁用'); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('video_group'); } }