Fixes for tests

This commit is contained in:
David Bomba 2020-08-19 16:09:01 +10:00
parent 14983479d3
commit ca99a66390
2 changed files with 4 additions and 1 deletions

View File

@ -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',

View File

@ -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');
});
}
/**