Skip to content

Commit

Permalink
add 503 setting migration
Browse files Browse the repository at this point in the history
  • Loading branch information
mohitpanjwani committed Dec 3, 2021
1 parent 8a7ea53 commit ed6268a
Showing 1 changed file with 27 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?php

use Crater\Models\Setting;
use Illuminate\Database\Migrations\Migration;

class UpdateCraterVersion503 extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Setting::setSetting('version', '5.0.3');
}

/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}

0 comments on commit ed6268a

Please sign in to comment.