mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
remove unique constraint on payment hash
This commit is contained in:
parent
f80179814d
commit
8197a87ad0
@ -37,10 +37,6 @@ class AddUniqueConstraintsOnAllEntities extends Migration
|
|||||||
$table->unique(['company_id', 'number']);
|
$table->unique(['company_id', 'number']);
|
||||||
});
|
});
|
||||||
|
|
||||||
Schema::table('payment_hashes', function (Blueprint $table) {
|
|
||||||
$table->unique(['hash']);
|
|
||||||
});
|
|
||||||
|
|
||||||
Schema::table('recurring_invoices', function (Blueprint $table) {
|
Schema::table('recurring_invoices', function (Blueprint $table) {
|
||||||
$table->string('number')->change();
|
$table->string('number')->change();
|
||||||
$table->unique(['company_id', 'number']);
|
$table->unique(['company_id', 'number']);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user