From 3ccbf334fc728467eb58afb465a337358cd1e0d4 Mon Sep 17 00:00:00 2001 From: dyzulk <66510723+dyzulk@users.noreply.github.com> Date: Tue, 6 Jan 2026 11:22:22 +0700 Subject: [PATCH] chore: remove file --- ...01_create_ca_certificates_table_new_db.php | 40 ------------------- 1 file changed, 40 deletions(-) delete mode 100644 database/migrations/2026_01_06_000001_create_ca_certificates_table_new_db.php diff --git a/database/migrations/2026_01_06_000001_create_ca_certificates_table_new_db.php b/database/migrations/2026_01_06_000001_create_ca_certificates_table_new_db.php deleted file mode 100644 index 700c13b..0000000 --- a/database/migrations/2026_01_06_000001_create_ca_certificates_table_new_db.php +++ /dev/null @@ -1,40 +0,0 @@ -create('ca_certificates', function (Blueprint $table) { - $table->string('uuid', 32)->primary(); - $table->string('ca_type'); // root, intermediate_4096, intermediate_2048 - $table->longText('cert_content')->nullable(); - $table->longText('key_content')->nullable(); - $table->string('serial_number')->nullable(); - $table->string('common_name')->nullable(); - $table->string('organization')->nullable(); - $table->dateTime('valid_from')->nullable(); - $table->dateTime('valid_to')->nullable(); - - // Tracking - $table->unsignedBigInteger('download_count')->default(0); - $table->timestamp('last_downloaded_at')->nullable(); - $table->timestamps(); - }); - } - - /** - * Reverse the migrations. - */ - public function down(): void - { - Schema::connection('mysql_ca')->dropIfExists('ca_certificates'); - } -};