update order payment schema
This commit is contained in:
parent
33784ebbdb
commit
2430791a25
|
|
@ -16,10 +16,10 @@ return new class extends Migration {
|
||||||
$table->id();
|
$table->id();
|
||||||
$table->integer('order_id');
|
$table->integer('order_id');
|
||||||
$table->string('transaction_id')->nullable();
|
$table->string('transaction_id')->nullable();
|
||||||
$table->string('request')->nullable();
|
$table->text('request')->nullable();
|
||||||
$table->string('response')->nullable();
|
$table->text('response')->nullable();
|
||||||
$table->string('callback')->nullable();
|
$table->text('callback')->nullable();
|
||||||
$table->string('receipt')->nullable();
|
$table->text('receipt')->nullable();
|
||||||
$table->timestamps();
|
$table->timestamps();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue