fix: nullable name on deploy_keys
This commit is contained in:
parent
54441ddfde
commit
01301c99df
1 changed files with 1 additions and 0 deletions
|
|
@ -14,6 +14,7 @@ public function up(): void
|
|||
Schema::create('git_deploy_keys', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->string('uuid')->unique();
|
||||
$table->string('name')->nullable();
|
||||
$table->string('url');
|
||||
|
||||
$table->foreignId('private_key_id');
|
||||
|
|
|
|||
Loading…
Reference in a new issue