| Conditions | 1 |
| Paths | 1 |
| Total Lines | 18 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | public function up() |
||
| 15 | { |
||
| 16 | Schema::create('transactions', function (Blueprint $table) { |
||
| 17 | $table->increments('id'); |
||
| 18 | $table->string('payment_system'); |
||
| 19 | $table->string('system_transaction_id'); |
||
| 20 | $table->double('amount',15,5); |
||
| 21 | $table->integer('currency_code'); |
||
| 22 | $table->integer('state'); |
||
| 23 | $table->string('updated_time')->nullable(); |
||
| 24 | $table->string('comment')->nullable(); |
||
| 25 | $table->string('detail')->nullable(); |
||
| 26 | $table->string('transactionable_type')->nullable(); |
||
| 27 | $table->integer('transactionable_id')->nullable(); |
||
| 28 | $table->softDeletes(); |
||
| 29 | $table->timestamps(); |
||
| 30 | }); |
||
| 31 | } |
||
| 32 | |||
| 43 |