mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Company entity options
This commit is contained in:
parent
f69a624b48
commit
944bd1207c
@ -21,6 +21,13 @@ class ProjectIdsToEntities extends Migration
|
|||||||
$table->longText('fields')->change();
|
$table->longText('fields')->change();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Schema::table('gateways', function (Blueprint $table) {
|
||||||
|
$table->boolean('mark_expenses_invoiceable')->default(0);
|
||||||
|
$table->boolean('mark_expenses_paid')->default(0);
|
||||||
|
$table->enum('use_credits_payment', ['always', 'off', 'optin'])->nullable();
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user