summaryrefslogtreecommitdiff
path: root/app/Console/DatabaseMigrationCommand.php
blob: 252d4369ac98554ee8e9e6c75adc8f4b473ddb60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php

namespace Kanboard\Console;

use Kanboard\ServiceProvider\DatabaseProvider;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;

class DatabaseMigrationCommand extends DatabaseVersionCommand
{
    protected function configure()
    {
        $this
            ->setName('db:migrate')
            ->setDescription('Execute SQL migrations');
    }

    protected function execute(InputInterface $input, OutputInterface $output)
    {
        parent::execute($input, $output);
        DatabaseProvider::runMigrations($this->container['db']);
    }
}