mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -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->string('label', 255)->nullable();
|
||||
});
|
||||
|
||||
Schema::table('payments', function (Blueprint $table) {
|
||||
$table->text('meta')->nullable();
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user