mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-03 17:04:35 -04:00
Add payment meta data to payments table
This commit is contained in:
parent
279609f70f
commit
6d8d48bced
@ -26,6 +26,11 @@ class AddIsPublicToDocumentsTable extends Migration
|
|||||||
$table->enum('token_billing', ['off', 'always','optin','optout'])->default('off');
|
$table->enum('token_billing', ['off', 'always','optin','optout'])->default('off');
|
||||||
$table->string('label', 255)->nullable();
|
$table->string('label', 255)->nullable();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Schema::table('payments', function (Blueprint $table) {
|
||||||
|
$table->text('meta')->nullable();
|
||||||
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user