<?php /* * kohinos_cooperatic * Copyright (C) 2019-2020 ADML63 * Copyright (C) 2020- Cooperatic * * 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. * * 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 Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ 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 Version20210423123528 extends AbstractMigration { public function getDescription() : string { return ''; } public function up(Schema $schema) : void { // this up() migration is auto-generated, please modify it to your needs $this->addSql('CREATE TABLE user_comptoir_caissier (comptoir_id INT NOT NULL, user_id INT NOT NULL, INDEX IDX_DC1FEA74AEB0C1F5 (comptoir_id), INDEX IDX_DC1FEA74A76ED395 (user_id), PRIMARY KEY(comptoir_id, user_id)) DEFAULT CHARACTER SET utf8 COLLATE `utf8_general_ci` ENGINE = InnoDB'); $this->addSql('CREATE TABLE user_prestataire_caissier (prestataire_id INT NOT NULL, user_id INT NOT NULL, INDEX IDX_65D67ECEBE3DB2B7 (prestataire_id), INDEX IDX_65D67ECEA76ED395 (user_id), PRIMARY KEY(prestataire_id, user_id)) DEFAULT CHARACTER SET utf8 COLLATE `utf8_general_ci` ENGINE = InnoDB'); $this->addSql('ALTER TABLE user_comptoir_caissier ADD CONSTRAINT FK_DC1FEA74AEB0C1F5 FOREIGN KEY (comptoir_id) REFERENCES comptoir (id)'); $this->addSql('ALTER TABLE user_comptoir_caissier ADD CONSTRAINT FK_DC1FEA74A76ED395 FOREIGN KEY (user_id) REFERENCES user (id)'); $this->addSql('ALTER TABLE user_prestataire_caissier ADD CONSTRAINT FK_65D67ECEBE3DB2B7 FOREIGN KEY (prestataire_id) REFERENCES prestataire (id)'); $this->addSql('ALTER TABLE user_prestataire_caissier ADD CONSTRAINT FK_65D67ECEA76ED395 FOREIGN KEY (user_id) REFERENCES user (id)'); } public function down(Schema $schema) : void { // this down() migration is auto-generated, please modify it to your needs $this->addSql('DROP TABLE user_comptoir_caissier'); $this->addSql('DROP TABLE user_prestataire_caissier'); } }