mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-09 08:14:59 +00:00
cs: Fix code style (safe rules only).
This commit is contained in:
@@ -1,5 +1,12 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Chill is a software for social workers
|
||||
*
|
||||
* For the full copyright and license information, please view
|
||||
* the LICENSE file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Chill\Migrations\Main;
|
||||
@@ -8,10 +15,24 @@ use Doctrine\DBAL\Schema\Schema;
|
||||
use Doctrine\Migrations\AbstractMigration;
|
||||
|
||||
/**
|
||||
* Add metadata on users
|
||||
* Add metadata on users.
|
||||
*/
|
||||
final class Version20210903144853 extends AbstractMigration
|
||||
{
|
||||
public function down(Schema $schema): void
|
||||
{
|
||||
$this->addSql('ALTER TABLE users DROP CONSTRAINT FK_1483A5E964B65C5B');
|
||||
$this->addSql('DROP SEQUENCE chill_main_user_job_id_seq CASCADE');
|
||||
$this->addSql('DROP TABLE chill_main_user_job');
|
||||
$this->addSql('ALTER TABLE users DROP CONSTRAINT FK_1483A5E92C2125C1');
|
||||
$this->addSql('ALTER TABLE users DROP CONSTRAINT FK_1483A5E9115E73F3');
|
||||
$this->addSql('ALTER TABLE users DROP label');
|
||||
$this->addSql('ALTER TABLE users DROP mainCenter_id');
|
||||
$this->addSql('ALTER TABLE users DROP mainScope_id');
|
||||
$this->addSql('ALTER TABLE users DROP userJob_id');
|
||||
$this->addSql('ALTER TABLE users ALTER usernameCanonical DROP NOT NULL');
|
||||
}
|
||||
|
||||
public function getDescription(): string
|
||||
{
|
||||
return 'Add metadata on users';
|
||||
@@ -35,18 +56,4 @@ final class Version20210903144853 extends AbstractMigration
|
||||
$this->addSql('CREATE INDEX IDX_1483A5E9115E73F3 ON users (mainScope_id)');
|
||||
$this->addSql('CREATE INDEX IDX_1483A5E964B65C5B ON users (userJob_id)');
|
||||
}
|
||||
|
||||
public function down(Schema $schema): void
|
||||
{
|
||||
$this->addSql('ALTER TABLE users DROP CONSTRAINT FK_1483A5E964B65C5B');
|
||||
$this->addSql('DROP SEQUENCE chill_main_user_job_id_seq CASCADE');
|
||||
$this->addSql('DROP TABLE chill_main_user_job');
|
||||
$this->addSql('ALTER TABLE users DROP CONSTRAINT FK_1483A5E92C2125C1');
|
||||
$this->addSql('ALTER TABLE users DROP CONSTRAINT FK_1483A5E9115E73F3');
|
||||
$this->addSql('ALTER TABLE users DROP label');
|
||||
$this->addSql('ALTER TABLE users DROP mainCenter_id');
|
||||
$this->addSql('ALTER TABLE users DROP mainScope_id');
|
||||
$this->addSql('ALTER TABLE users DROP userJob_id');
|
||||
$this->addSql('ALTER TABLE users ALTER usernameCanonical DROP NOT NULL');
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user