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'); - }); - } -}