diff --git a/database/migrations/2024_09_17_111226_add_ssh_key_fingerprint_to_private_keys_table.php b/database/migrations/2024_09_17_111226_add_ssh_key_fingerprint_to_private_keys_table.php index 15f56c76b..f16eccb5c 100644 --- a/database/migrations/2024_09_17_111226_add_ssh_key_fingerprint_to_private_keys_table.php +++ b/database/migrations/2024_09_17_111226_add_ssh_key_fingerprint_to_private_keys_table.php @@ -1,16 +1,16 @@ string('fingerprint')->after('private_key')->unique(); + $table->string('fingerprint')->after('private_key')->nullable(); }); PrivateKey::whereNull('fingerprint')->each(function ($key) {