2019-12-14 16:35:19 +01:00
< ? php
2019-12-31 17:58:01 +01:00
/**
* This file is part of Part - DB ( https :// github . com / Part - DB / Part - DB - symfony ) .
*
2020-02-22 18:14:36 +01:00
* Copyright ( C ) 2019 - 2020 Jan Böhmer ( https :// github . com / jbtronics )
2019-12-31 17:58:01 +01:00
*
2020-02-22 18:14:36 +01:00
* This program is free software : you can redistribute it and / or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation , either version 3 of the License , or
* ( at your option ) any later version .
2019-12-31 17:58:01 +01:00
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
2020-02-22 18:14:36 +01:00
* GNU Affero General Public License for more details .
2019-12-31 17:58:01 +01:00
*
2020-02-22 18:14:36 +01:00
* You should have received a copy of the GNU Affero General Public License
* along with this program . If not , see < https :// www . gnu . org / licenses />.
2019-12-31 17:58:01 +01:00
*/
2019-12-14 16:35:19 +01:00
declare ( strict_types = 1 );
namespace DoctrineMigrations ;
2020-07-04 23:38:18 +02:00
use App\Migration\AbstractMultiPlatformMigration ;
2019-12-14 16:35:19 +01:00
use Doctrine\DBAL\Schema\Schema ;
/**
* Auto - generated Migration : Please modify to your needs !
*/
2020-06-13 23:58:59 +02:00
final class Version20191214153125 extends AbstractMultiPlatformMigration
2019-12-14 16:35:19 +01:00
{
2020-01-04 20:24:09 +01:00
public function getDescription () : string
2019-12-14 16:35:19 +01:00
{
return '' ;
}
2020-06-13 23:58:59 +02:00
public function mySQLUp ( Schema $schema ) : void
2019-12-14 16:35:19 +01:00
{
// this up() migration is auto-generated, please modify it to your needs
2022-03-04 18:51:58 +01:00
$this -> abortIf ( 'mysql' !== $this -> getDatabaseType (), 'Migration can only be executed safely on \'mysql\'.' );
2019-12-14 16:35:19 +01:00
2020-01-01 16:13:54 +01:00
$this -> addSql ( 'CREATE TABLE u2f_keys (id INT AUTO_INCREMENT NOT NULL, user_id INT DEFAULT NULL, key_handle VARCHAR(64) NOT NULL, public_key VARCHAR(255) NOT NULL, certificate LONGTEXT NOT NULL, counter VARCHAR(255) NOT NULL, name VARCHAR(255) NOT NULL, last_modified DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL, datetime_added DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL, INDEX IDX_4F4ADB4BA76ED395 (user_id), UNIQUE INDEX user_unique (user_id, key_handle), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci ENGINE = InnoDB' );
2019-12-14 16:35:19 +01:00
$this -> addSql ( 'ALTER TABLE u2f_keys ADD CONSTRAINT FK_4F4ADB4BA76ED395 FOREIGN KEY (user_id) REFERENCES `users` (id)' );
$this -> addSql ( 'ALTER TABLE `groups` ADD enforce_2fa TINYINT(1) NOT NULL' );
$this -> addSql ( 'ALTER TABLE users ADD google_authenticator_secret VARCHAR(255) DEFAULT NULL, ADD backup_codes LONGTEXT NOT NULL COMMENT \'(DC2Type:json)\', ADD backup_codes_generation_date DATETIME DEFAULT NULL, ADD trusted_device_cookie_version INT NOT NULL' );
}
2020-06-13 23:58:59 +02:00
public function mySQLDown ( Schema $schema ) : void
2019-12-14 16:35:19 +01:00
{
// this down() migration is auto-generated, please modify it to your needs
2022-03-04 18:51:58 +01:00
$this -> abortIf ( 'mysql' !== $this -> getDatabaseType (), 'Migration can only be executed safely on \'mysql\'.' );
2019-12-14 16:35:19 +01:00
$this -> addSql ( 'DROP TABLE u2f_keys' );
$this -> addSql ( 'ALTER TABLE `groups` DROP enforce_2fa' );
$this -> addSql ( 'ALTER TABLE `users` DROP google_authenticator_secret, DROP backup_codes, DROP backup_codes_generation_date, DROP trusted_device_cookie_version' );
}
2020-06-13 23:58:59 +02:00
public function sqLiteUp ( Schema $schema ) : void
{
2020-07-04 23:38:18 +02:00
$this -> warnIf ( true , " Migration not needed for SQLite. Skipping... " );
2020-06-13 23:58:59 +02:00
}
public function sqLiteDown ( Schema $schema ) : void
{
2020-07-04 23:38:18 +02:00
$this -> warnIf ( true , " Migration not needed for SQLite. Skipping... " );
2020-06-13 23:58:59 +02:00
}
2019-12-14 16:35:19 +01:00
}