summaryrefslogtreecommitdiff
path: root/src/Database/Migration/Migration.php
blob: 586cfcffb8a0da9c4d0f368e44d728654618e075 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php

namespace Engelsystem\Database\Migration;

use Illuminate\Database\Schema\Builder as SchemaBuilder;

abstract class Migration
{
    /** @var SchemaBuilder */
    protected $schema;

    /**
     * Migration constructor.
     *
     * @param SchemaBuilder $schemaBuilder
     */
    public function __construct(SchemaBuilder $schemaBuilder)
    {
        $this->schema = $schemaBuilder;
    }
}