id(); $table->string('region', 2)->index(); $table->jsonb('name'); $table->boolean('active')->default(true); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('provinces'); } };