Skip to content

Commit

Permalink
version 4.8.1 (#1842)
Browse files Browse the repository at this point in the history
  • Loading branch information
ildyria committed May 15, 2023
1 parent 63d667c commit 774e85a
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
26 changes: 26 additions & 0 deletions database/migrations/2023_05_15_081406_bump_version040801.php
@@ -0,0 +1,26 @@
<?php

use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\DB;

return new class() extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up(): void
{
DB::table('configs')->where('key', 'version')->update(['value' => '040801']);
}

/**
* Reverse the migrations.
*
* @return void
*/
public function down(): void
{
DB::table('configs')->where('key', 'version')->update(['value' => '040800']);
}
};
2 changes: 1 addition & 1 deletion version.md
@@ -1 +1 @@
4.8.0
4.8.1

0 comments on commit 774e85a

Please sign in to comment.