|
|
@@ -14,7 +14,7 @@ public function up(): void
|
|
|
$table->string('code', 2);
|
|
|
$table->foreignId('country_id')->constrained();
|
|
|
$table->index('country_id');
|
|
|
- $table->enum('status', ['ACTIVE', 'INACTIVE'])->default('ACTIVE');
|
|
|
+ $table->string('status')->default('ACTIVE');
|
|
|
$table->timestamps();
|
|
|
$table->softDeletes();
|
|
|
});
|