summaryrefslogtreecommitdiff
path: root/tests/Unit/Database/Migration/Stub/2017_12_24_053300_another_stuff.php
blob: 4adaf3ed56f27ae8a54074fa1a6befe7e9967e7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php

namespace Engelsystem\Migrations;

use Engelsystem\Database\Migration\Migration;
use Illuminate\Database\Schema\Builder as SchemaBuilder;

class AnotherStuff extends Migration
{
    /**
     * Run the migration
     */
    public function up()
    {
        // nope
    }

    /**
     * Reverse the migration
     */
    public function down()
    {
        // nope
    }

    /**
     * @return SchemaBuilder
     */
    public function getSchema()
    {
        return $this->schema;
    }
}