Add payment meta data to payments table

This commit is contained in:
= 2020-08-22 10:57:38 +10:00
parent 279609f70f
commit 6d8d48bced

View File

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