summaryrefslogtreecommitdiff
path: root/tests/Unit/Database/Migration/Stub/2017_12_24_053300_another_stuff.php
blob: 65846d16e8d1f154960ec3195478da02e5c3bdf8 (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
<?php

namespace Engelsystem\Migrations;

use Engelsystem\Database\Migration\Migration;

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

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