mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 13:41:23 +00:00
24 lines
395 B
PHP
24 lines
395 B
PHP
<?php
|
|
|
|
use App\Models\Setting;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
return new class extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*/
|
|
public function up(): void
|
|
{
|
|
Setting::setSetting('version', '1.3.0');
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Setting::setSetting('version', '1.2.2');
|
|
}
|
|
};
|