mirror of
https://github.com/kevinpapst/kimai2.git
synced 2024-12-22 04:08:29 +00:00
1a8c78944a
* fix api definition * include customer number in validation message * fix doctrine deprecation, prepare for DBAL 4 * added DataSubscriberInterface to identify certain doctrine subscribers
55 lines
1.8 KiB
PHP
55 lines
1.8 KiB
PHP
<?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;
|
|
|
|
/**
|
|
* Fix meta-table definitions
|
|
*
|
|
* @version 1.1
|
|
*/
|
|
final class Version20190706224211 extends AbstractMigration
|
|
{
|
|
public function getDescription(): string
|
|
{
|
|
return 'Fix meta-table definitions';
|
|
}
|
|
|
|
public function up(Schema $schema): void
|
|
{
|
|
$timesheetMeta = $schema->getTable('kimai2_timesheet_meta');
|
|
$timesheetMeta->modifyColumn('visible', ['notnull' => true, 'default' => false]);
|
|
$timesheetMeta->modifyColumn('timesheet_id', ['notnull' => true]);
|
|
|
|
$projectMeta = $schema->getTable('kimai2_projects_meta');
|
|
$projectMeta->modifyColumn('visible', ['notnull' => true, 'default' => false]);
|
|
$projectMeta->modifyColumn('project_id', ['notnull' => true]);
|
|
|
|
$customerMeta = $schema->getTable('kimai2_customers_meta');
|
|
$customerMeta->modifyColumn('visible', ['notnull' => true, 'default' => false]);
|
|
$customerMeta->modifyColumn('customer_id', ['notnull' => true]);
|
|
|
|
$activityMeta = $schema->getTable('kimai2_activities_meta');
|
|
$activityMeta->modifyColumn('visible', ['notnull' => true, 'default' => false]);
|
|
$activityMeta->modifyColumn('activity_id', ['notnull' => true]);
|
|
}
|
|
|
|
public function down(Schema $schema): void
|
|
{
|
|
// the columns above were created incorrect in migration Version20190617100845 for upgraded systems
|
|
// that's why there are no equivalent changes in down()
|
|
$this->preventEmptyMigrationWarning();
|
|
}
|
|
}
|