From 54c03fae41fee089736ff60240409f3941b35332 Mon Sep 17 00:00:00 2001 From: peaklabs-dev <122374094+peaklabs-dev@users.noreply.github.com> Date: Mon, 16 Sep 2024 18:10:46 +0200 Subject: [PATCH] Remove ssh key fingerprint as we can just us uuid --- ..._key_fingerprint_to_private_keys_table.php | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 database/migrations/2024_09_16_094127_add_ssh_key_fingerprint_to_private_keys_table.php diff --git a/database/migrations/2024_09_16_094127_add_ssh_key_fingerprint_to_private_keys_table.php b/database/migrations/2024_09_16_094127_add_ssh_key_fingerprint_to_private_keys_table.php deleted file mode 100644 index f64bb32c9..000000000 --- a/database/migrations/2024_09_16_094127_add_ssh_key_fingerprint_to_private_keys_table.php +++ /dev/null @@ -1,22 +0,0 @@ -string('fingerprint')->nullable()->unique()->after('private_key'); - }); - } - - public function down() - { - Schema::table('private_keys', function (Blueprint $table) { - $table->dropColumn('fingerprint'); - }); - } -}