summaryrefslogtreecommitdiff
path: root/tests/Unit/Database/Migration/Stub/2022_12_22_221222_add_some_feature.php
blob: 32317f71a89318930d27303be21ddad45ee4d6b1 (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 AddSomeFeature extends Migration
{
    /**
     * Run the migration
     */
    public function up()
    {
        // nope
    }

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