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 ) .
*
* Copyright ( C ) 2019 Jan Böhmer ( https :// github . com / jbtronics )
*
* This program is free software ; you can redistribute it and / or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation ; either version 2
* of the License , or ( at your option ) any later version .
*
* 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
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program ; if not , write to the Free Software
* Foundation , Inc . , 51 Franklin Street , Fifth Floor , Boston , MA 02110 - 1301 , USA
*/
2019-12-14 16:35:19 +01:00
declare ( strict_types = 1 );
namespace DoctrineMigrations ;
use Doctrine\DBAL\Schema\Schema ;
use Doctrine\Migrations\AbstractMigration ;
/**
* Auto - generated Migration : Please modify to your needs !
*/
final class Version20191214153125 extends AbstractMigration
{
2020-01-04 20:24:09 +01:00
public function getDescription () : string
2019-12-14 16:35:19 +01:00
{
return '' ;
}
2020-01-04 20:24:09 +01:00
public function up ( Schema $schema ) : void
2019-12-14 16:35:19 +01:00
{
// this up() migration is auto-generated, please modify it to your needs
2020-01-04 20:24:09 +01:00
$this -> abortIf ( 'mysql' !== $this -> connection -> getDatabasePlatform () -> getName (), '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-01-04 20:24:09 +01:00
public function down ( Schema $schema ) : void
2019-12-14 16:35:19 +01:00
{
// this down() migration is auto-generated, please modify it to your needs
2020-01-04 20:24:09 +01:00
$this -> abortIf ( 'mysql' !== $this -> connection -> getDatabasePlatform () -> getName (), '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' );
}
}