summaryrefslogtreecommitdiff
path: root/tests/Unit/Database/Migration/Stub/2017_12_24_053300_another_stuff.php
blob: d4d7e5f8e61ce9ff1b56f881895d03f5a8dd86bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

use Engelsystem\Database\Migration\Migration;

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

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