Skip to content

Commit 4fe60a1

Browse files
authored
version 4.6.3 (#1606)
1 parent b91cfd6 commit 4fe60a1

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?php
2+
3+
use App\Models\Configs;
4+
use Illuminate\Database\Migrations\Migration;
5+
6+
class BumpVersion040603 extends Migration
7+
{
8+
/**
9+
* Run the migrations.
10+
*
11+
* @return void
12+
*/
13+
public function up()
14+
{
15+
Configs::where('key', 'version')->update(['value' => '040603']);
16+
}
17+
18+
/**
19+
* Reverse the migrations.
20+
*
21+
* @return void
22+
*/
23+
public function down()
24+
{
25+
Configs::where('key', 'version')->update(['value' => '040602']);
26+
}
27+
}

version.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.6.2
1+
4.6.3

0 commit comments

Comments
 (0)