Skip to content

Commit 0f081ae

Browse files
committed
增加订单名称
1 parent ded43a1 commit 0f081ae

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/Databases/migrations/2017_09_01_024032_omnipay_orders_table.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ public function up()
1616
Schema::create('omnipay_orders', function (Blueprint $table) {
1717
$table->string('id') ->comment('订单编号')->unique();
1818
$table->bigInteger('uid') ->comment('用户ID')->default(0)->unsigned();
19+
$table->string('name',275) ->comment('订单名称');
1920
$table->decimal('fee',11, 2) ->comment('订单金额')->unsigned()->default(0);
2021
$table->string('gateway',30) ->comment('支付网关');
2122
$table->string('query_id') ->comment('网关订单编号')->nullable();

0 commit comments

Comments
 (0)