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:
@@ -12,7 +12,7 @@ return new class extends Migration
|
|||||||
public function up(): void
|
public function up(): void
|
||||||
{
|
{
|
||||||
Schema::table('pemilik_jaminan', function (Blueprint $table) {
|
Schema::table('pemilik_jaminan', function (Blueprint $table) {
|
||||||
$table->string('detail_sertifikat')->nullable()->after('nama_pemilik');
|
$table->string('detail_sertifikat')->nullable()->after('name');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user