Skip to content

Commit

Permalink
version 4.6.1 (LycheeOrg#1533)
Browse files Browse the repository at this point in the history
  • Loading branch information
ildyria authored Sep 27, 2022
1 parent fd445f6 commit 7ec3e3d
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions database/migrations/2022_09_27_103710_bump_version040601.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?php

use App\Models\Configs;
use Illuminate\Database\Migrations\Migration;

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

/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Configs::where('key', 'version')->update(['value' => '040600']);
}
}
2 changes: 1 addition & 1 deletion version.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.6.0
4.6.1

0 comments on commit 7ec3e3d

Please sign in to comment.