Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
28 | public function up() |
||
29 | { |
||
30 | $this->builder->create('transactions', function (Blueprint $table) { |
||
31 | $table->bigIncrements('id'); |
||
32 | |||
33 | $table->decimal('amount'); |
||
34 | |||
35 | $table->json('meta')->nullable(); |
||
36 | |||
37 | $table->enum('state', Transaction::STATES); |
||
38 | |||
39 | $table->unsignedInteger('subject_id'); |
||
40 | |||
41 | $table->string('subject_type'); |
||
42 | |||
43 | $table->timestamps(); |
||
44 | }); |
||
57 |