| Total Complexity | 3 |
| Total Lines | 47 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class CreateTransactionsTable extends Migration |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var Builder |
||
| 12 | */ |
||
| 13 | public $builder; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * CreateTransactionsTable constructor. |
||
| 17 | */ |
||
| 18 | public function __construct() |
||
| 19 | { |
||
| 20 | $this->builder = app(Builder::class); |
||
|
|
|||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Run the migrations. |
||
| 25 | * |
||
| 26 | * @return void |
||
| 27 | */ |
||
| 28 | public function up() |
||
| 44 | }); |
||
| 45 | } |
||
| 46 | |||
| 47 | /** |
||
| 48 | * Reverse the migrations. |
||
| 49 | * |
||
| 50 | * @return void |
||
| 51 | */ |
||
| 52 | public function down() |
||
| 55 | } |
||
| 56 | } |
||
| 57 |