mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
28 lines
407 B
PHP
28 lines
407 B
PHP
<?php
|
|
|
|
use Crater\Models\Setting;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class CraterVersion605 extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function up()
|
|
{
|
|
Setting::setSetting('version', '6.0.5');
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function down()
|
|
{
|
|
//
|
|
}
|
|
}
|