Skip to content

Commit

Permalink
add 403 migration
Browse files Browse the repository at this point in the history
  • Loading branch information
mohitpanjwani committed Dec 31, 2020
1 parent ff38461 commit d4550e6
Showing 1 changed file with 29 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?php

use Crater\Models\Setting;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

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

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

0 comments on commit d4550e6

Please sign in to comment.