Fixes for tests
This commit is contained in:
parent
14983479d3
commit
ca99a66390
2 changed files with 4 additions and 1 deletions
|
|
@ -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…
Add table
Reference in a new issue