Company entity options

This commit is contained in:
David Bomba 2020-10-15 08:16:20 +11:00
parent f69a624b48
commit 944bd1207c

View File

@ -21,6 +21,13 @@ class ProjectIdsToEntities extends Migration
$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();
});
}
/**