update order payment schema

This commit is contained in:
Edward Yang 2023-07-10 11:45:29 +08:00
parent 33784ebbdb
commit 2430791a25
1 changed files with 4 additions and 4 deletions

View File

@ -16,10 +16,10 @@ return new class extends Migration {
$table->id();
$table->integer('order_id');
$table->string('transaction_id')->nullable();
$table->string('request')->nullable();
$table->string('response')->nullable();
$table->string('callback')->nullable();
$table->string('receipt')->nullable();
$table->text('request')->nullable();
$table->text('response')->nullable();
$table->text('callback')->nullable();
$table->text('receipt')->nullable();
$table->timestamps();
});
}