id(); $table->integer('company_id')->index(); $table->string('name', 100); $table->integer('sequence')->default(0); $table->softDeletes(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('asset_groups'); } };