0
0
Fork 0
mirror of https://github.com/kevinpapst/kimai2.git synced 2025-03-15 05:24:46 +00:00
kevinpapst_kimai2/migrations/Version20190124004014.php

34 lines
777 B
PHP
Raw Normal View History

2019-02-05 20:37:33 +00:00
<?php
declare(strict_types=1);
/*
* This file is part of the Kimai time-tracking app.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace DoctrineMigrations;
use App\Doctrine\AbstractMigration;
use Doctrine\DBAL\Schema\Schema;
/**
* Adds the exported column to the timesheet table
*
* @version 0.8
2019-02-05 20:37:33 +00:00
*/
final class Version20190124004014 extends AbstractMigration
{
public function up(Schema $schema): void
{
2020-03-11 23:42:47 +00:00
$schema->getTable('kimai2_timesheet')->addColumn('exported', 'boolean', ['notnull' => true, 'default' => false]);
2019-02-05 20:37:33 +00:00
}
public function down(Schema $schema): void
{
2020-03-11 23:42:47 +00:00
$schema->getTable('kimai2_timesheet')->dropColumn('exported');
2019-02-05 20:37:33 +00:00
}
}