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

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