Skip to content

Commit

Permalink
bump to version 4.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
ildyria committed Nov 19, 2020
1 parent f6693e7 commit 3e562ac
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions database/migrations/2020_11_19_231553_bump_version040008.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 BumpVersion040008 extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Configs::where('key', 'version')->update(['value' => '040008']);
}

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

0 comments on commit 3e562ac

Please sign in to comment.