mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -04:00
Fixes for tests
This commit is contained in:
parent
14983479d3
commit
ca99a66390
@ -239,7 +239,7 @@ class CompanySettings extends BaseSettings
|
||||
public $client_portal_privacy_policy = '';
|
||||
|
||||
public static $casts = [
|
||||
'auto_bill' => 'auto_bill',
|
||||
'auto_bill' => 'string',
|
||||
'lock_invoices' => 'string',
|
||||
'client_portal_terms' => 'string',
|
||||
'client_portal_privacy_policy' => 'string',
|
||||
|
@ -22,6 +22,9 @@ class AddIsPublicToDocumentsTable extends Migration
|
||||
$table->decimal('amount', 16, 4);
|
||||
});
|
||||
|
||||
Schema::table('company_gateways', function (Blueprint $table) {
|
||||
$table->string('token_billing')->default('off');
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user