Skip to content

Commit

Permalink
Merge pull request #2238 from bakaphp/hotfix-filesystem-index
Browse files Browse the repository at this point in the history
refact: custom field entity id
  • Loading branch information
kaioken authored Oct 20, 2024
2 parents 0eb211e + 751b5c7 commit 910350c
Showing 1 changed file with 29 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class () extends Migration {
/**
* Run the migrations.
*/
public function up(): void
{
Schema::table('apps_custom_fields', function (Blueprint $table) {
// Make sure no foreign keys are attached to the column before altering
$table->unsignedBigInteger('entity_id')->change();
});
}

/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::table('apps_custom_fields', function (Blueprint $table) {
// Reverse back to CHAR(36) if needed
$table->char('entity_id', 36)->change();
});
}
};

0 comments on commit 910350c

Please sign in to comment.