Refactor commit_message column length to 50 characters

This commit is contained in:
Andras Bacsai
2024-05-15 12:35:28 +02:00
parent 1e01106b94
commit 56a450a936
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ return new class extends Migration
public function up(): void
{
Schema::table('application_deployment_queues', function (Blueprint $table) {
$table->string('commit_message', 300)->nullable();
$table->string('commit_message', 50)->nullable();
});
}