|
|
@@ -21,8 +21,9 @@ class CreateOrdersTable extends Migration |
|
|
|
$table->bigInteger('quantity'); |
|
|
|
$table->integer('attempts')->default(0); |
|
|
|
$table->string('note')->default(''); |
|
|
|
$table->string('message')->nullable(); |
|
|
|
$table->bigInteger('remaining')->default(0); |
|
|
|
$table->enum('status', ['processing', 'pending', 'canceled', 'refunded', 'completed']); |
|
|
|
$table->enum('status', ['processing', 'pending', 'canceled', 'refunded', 'completed', 'error']); |
|
|
|
$table->string('url'); |
|
|
|
}); |
|
|
|
} |
|
|
|