mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Quotas for einvoice
This commit is contained in:
parent
28de616bbf
commit
662989169f
@ -45,6 +45,7 @@ return [
|
|||||||
'environment' => env('NINJA_ENVIRONMENT', 'selfhost'), // 'hosted', 'development', 'selfhost', 'reseller'
|
'environment' => env('NINJA_ENVIRONMENT', 'selfhost'), // 'hosted', 'development', 'selfhost', 'reseller'
|
||||||
'preconfigured_install' => env('PRECONFIGURED_INSTALL', false),
|
'preconfigured_install' => env('PRECONFIGURED_INSTALL', false),
|
||||||
'update_secret' => env('UPDATE_SECRET', ''),
|
'update_secret' => env('UPDATE_SECRET', ''),
|
||||||
|
'license_key' => env('LICENSE_KEY', false),
|
||||||
// Settings used by invoiceninja.com
|
// Settings used by invoiceninja.com
|
||||||
'disks' => [
|
'disks' => [
|
||||||
'backup' => env('BACKUP_DISK', 's3'),
|
'backup' => env('BACKUP_DISK', 's3'),
|
||||||
|
@ -0,0 +1,28 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Illuminate\Database\Migrations\Migration;
|
||||||
|
use Illuminate\Database\Schema\Blueprint;
|
||||||
|
use Illuminate\Support\Facades\Schema;
|
||||||
|
|
||||||
|
return new class extends Migration
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Run the migrations.
|
||||||
|
*/
|
||||||
|
public function up(): void
|
||||||
|
{
|
||||||
|
|
||||||
|
Schema::table('licenses', function (Blueprint $table) {
|
||||||
|
$table->unsignedInteger('e_invoice_quota')->nullable()->index();
|
||||||
|
});
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Reverse the migrations.
|
||||||
|
*/
|
||||||
|
public function down(): void
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
};
|
Loading…
x
Reference in New Issue
Block a user