Skip to content

Commit

Permalink
refactor(migrations/custodians): change "name" field to string
Browse files Browse the repository at this point in the history
  • Loading branch information
021-projects committed Jun 23, 2024
1 parent d08fb76 commit d4d52b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/migrations/create_custodians_table.php.stub
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ return new class extends Migration
{
Schema::create(table_name('custodians'), function (Blueprint $table) {
$table->id();
$table->uuid('name')->unique();
$table->string('name', 36)->unique();
$table->json('meta')->nullable();
$table->timestamp('created_at')->useCurrent();
});
Expand Down

0 comments on commit d4d52b3

Please sign in to comment.