mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-08-12 11:10:13 +00:00
Include lang directory in the dist build (#65)
* Include lang/ dir in the build * Bump version
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use InvoiceShelf\Models\Setting;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*/
|
||||
public function up(): void
|
||||
{
|
||||
Setting::setSetting('version', '1.2.2');
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*/
|
||||
public function down(): void
|
||||
{
|
||||
Setting::setSetting('version', '1.2.1');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user