diff --git a/database/migrations/2025_05_25_100158_bump_version060604.php b/database/migrations/2025_05_25_100158_bump_version060604.php new file mode 100644 index 00000000000..7400d6ab016 --- /dev/null +++ b/database/migrations/2025_05_25_100158_bump_version060604.php @@ -0,0 +1,46 @@ +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' => '060604']); + Artisan::call('cache:clear'); + $this->msg_section->writeln('Info: Cleared cache for version 6.6.4'); + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down(): void + { + DB::table('configs')->where('key', 'version')->update(['value' => '060603']); + } +}; diff --git a/version.md b/version.md index a45cc0adf06..a08b5f1e88f 100644 --- a/version.md +++ b/version.md @@ -1 +1 @@ -6.6.3 \ No newline at end of file +6.6.4 \ No newline at end of file