Skip to content

Commit

Permalink
DB version increased.
Browse files Browse the repository at this point in the history
  • Loading branch information
nagmat84 committed Jan 13, 2022
1 parent f9563ec commit ed17b7e
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_01_13_183131_bump_version040500.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 BumpVersion040500 extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Configs::where('key', 'version')->update(['value' => '040500']);
}

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

0 comments on commit ed17b7e

Please sign in to comment.