Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
14 | public function up() |
||
15 | { |
||
16 | Schema::create('payum_payments', function (Blueprint $table) { |
||
17 | $table->bigIncrements('id'); |
||
18 | $table->text('details')->nullable(); |
||
19 | $table->string('number'); |
||
20 | $table->string('description')->nullable(); |
||
21 | $table->string('clientId')->nullable(); |
||
22 | $table->string('clientEmail')->nullable(); |
||
23 | $table->string('totalAmount')->nullable(); |
||
24 | $table->string('currencyCode')->nullable(); |
||
25 | $table->string('status')->nullable(); |
||
26 | $table->timestamps(); |
||
27 | }); |
||
28 | } |
||
29 | |||
40 |