fix: nullable name on deploy_keys
This commit is contained in:
@@ -14,6 +14,7 @@ return new class extends Migration
|
|||||||
Schema::create('git_deploy_keys', function (Blueprint $table) {
|
Schema::create('git_deploy_keys', function (Blueprint $table) {
|
||||||
$table->id();
|
$table->id();
|
||||||
$table->string('uuid')->unique();
|
$table->string('uuid')->unique();
|
||||||
|
$table->string('name')->nullable();
|
||||||
$table->string('url');
|
$table->string('url');
|
||||||
|
|
||||||
$table->foreignId('private_key_id');
|
$table->foreignId('private_key_id');
|
||||||
|
Reference in New Issue
Block a user