Update column position in pemilik_jaminan migration

Changed the position of 'detail_sertifikat' column to come after 'name' instead of 'nama_pemilik' in the migration. This ensures consistency with other tables and prevents errors during deployment.
This commit is contained in:
Daeng Deni Mardaeni
2024-11-01 16:59:19 +07:00
parent 5f5882d420
commit 56ba6ddae1

View File

@@ -12,7 +12,7 @@ return new class extends Migration
public function up(): void
{
Schema::table('pemilik_jaminan', function (Blueprint $table) {
$table->string('detail_sertifikat')->nullable()->after('nama_pemilik');
$table->string('detail_sertifikat')->nullable()->after('name');
});
}