diff --git a/database/migrations/2026_01_29_125116_bump_version070302.php b/database/migrations/2026_01_29_125116_bump_version070302.php
new file mode 100644
index 00000000000..50212fc4aab
--- /dev/null
+++ b/database/migrations/2026_01_29_125116_bump_version070302.php
@@ -0,0 +1,52 @@
+output = new ConsoleOutput();
+ $this->msg_section = $this->output->section();
+ }
+
+ /**
+ * Run the migrations.
+ *
+ * @return void
+ */
+ public function up(): void
+ {
+ DB::table('configs')->where('key', 'version')->update(['value' => '070302']);
+ try {
+ Artisan::call('cache:clear');
+ } catch (\Throwable $e) {
+ $this->msg_section->writeln('Warning: Failed to clear cache for version 7.3.2');
+
+ return;
+ }
+ $this->msg_section->writeln('Info: Cleared cache for version 7.3.2');
+ }
+
+ /**
+ * Reverse the migrations.
+ *
+ * @return void
+ */
+ public function down(): void
+ {
+ DB::table('configs')->where('key', 'version')->update(['value' => '070301']);
+ }
+};
diff --git a/version.md b/version.md
index 34a8f745d4e..af2c571ecd9 100644
--- a/version.md
+++ b/version.md
@@ -1 +1 @@
-7.3.1
\ No newline at end of file
+7.3.2
\ No newline at end of file