id('MsAgencyId'); $table->uuid('uuid'); $table->string('name'); $table->string('scope'); $table->integer('row_status')->default(1); $table->integer('ms_group_id'); $table->timestampsTz(); $table->foreign('ms_group_id')->references('MsGroupId')->on('ms_group')->cascadeOnDelete(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('agencies'); } };