aboutsummaryrefslogtreecommitdiffhomepage
path: root/main/app/system/Bakery/Migration.php
blob: c4255d9b0386c55da73b9d0bbfcda0d2a634d0ae (plain) (blame)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
/**
 * UserFrosting (http://www.userfrosting.com)
 *
 * @link      https://github.com/userfrosting/UserFrosting
 * @license   https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
 */

namespace UserFrosting\System\Bakery;

use Illuminate\Database\Schema\Builder;
use Symfony\Component\Console\Style\SymfonyStyle;

/**
 * Abstract Migration class.
 *
 * @abstract
 * @author Alex Weissman (https://alexanderweissman.com)
 */
abstract class Migration
{
    /**
     * @var Illuminate\Database\Schema\Builder $schema
     */
    protected $schema;

    /**
     * @var @Composer\IO\IOInterface
     */
    protected $io;

    /**
     * List of dependencies for this migration.
     * Should return an array of class required to be run before this migration
     */
    public $dependencies = [];

    /**
     * __construct function.
     *
     * @access public
     * @param Illuminate\Database\Schema\Builder $schema
     * @return void
     */
    public function __construct(Builder $schema, SymfonyStyle $io) {
        $this->schema = $schema;
        $this->io = $io;
    }

    /**
     * Method to apply changes to the database
     */
    public function up() {
    }

    /**
     * Method to revert changes applied by the `up` method
     */
    public function down() {
    }

    /**
     * Method to seed new information to the database
     */
    public function seed() {
    }
}