<?php
declare(strict_types=1);
namespace PrestashopConnectorBundleMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
final class Version20240702144855 extends AbstractMigration
{
public function up(Schema $schema): void
{
$this->addSql('CREATE TABLE prestashop_connector_bundle__customer_import_rule (id BINARY(16) NOT NULL COMMENT \'(DC2Type:uuid)\', customer_id BINARY(16) NOT NULL COMMENT \'(DC2Type:uuid)\', country_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', created_by_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', updated_by_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', deleted_by_id BINARY(16) DEFAULT NULL COMMENT \'(DC2Type:uuid)\', content VARCHAR(256) NOT NULL, created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL, deleted_at DATETIME DEFAULT NULL, INDEX IDX_7318AE6D9395C3F3 (customer_id), INDEX IDX_7318AE6DF92F3E70 (country_id), INDEX IDX_7318AE6DB03A8386 (created_by_id), INDEX IDX_7318AE6D896DBBDE (updated_by_id), INDEX IDX_7318AE6DC76F1F52 (deleted_by_id), INDEX deleted_at (deleted_at), INDEX created_at (created_at), INDEX updated_at (updated_at), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('ALTER TABLE prestashop_connector_bundle__customer_import_rule ADD CONSTRAINT FK_7318AE6D9395C3F3 FOREIGN KEY (customer_id) REFERENCES customers_bundle__customer (id)');
$this->addSql('ALTER TABLE prestashop_connector_bundle__customer_import_rule ADD CONSTRAINT FK_7318AE6DF92F3E70 FOREIGN KEY (country_id) REFERENCES country (id)');
$this->addSql('ALTER TABLE prestashop_connector_bundle__customer_import_rule ADD CONSTRAINT FK_7318AE6DB03A8386 FOREIGN KEY (created_by_id) REFERENCES user (id)');
$this->addSql('ALTER TABLE prestashop_connector_bundle__customer_import_rule ADD CONSTRAINT FK_7318AE6D896DBBDE FOREIGN KEY (updated_by_id) REFERENCES user (id)');
$this->addSql('ALTER TABLE prestashop_connector_bundle__customer_import_rule ADD CONSTRAINT FK_7318AE6DC76F1F52 FOREIGN KEY (deleted_by_id) REFERENCES user (id)');
}
public function down(Schema $schema): void
{
$this->addSql('ALTER TABLE prestashop_connector_bundle__customer_import_rule DROP FOREIGN KEY FK_7318AE6D9395C3F3');
$this->addSql('ALTER TABLE prestashop_connector_bundle__customer_import_rule DROP FOREIGN KEY FK_7318AE6DF92F3E70');
$this->addSql('ALTER TABLE prestashop_connector_bundle__customer_import_rule DROP FOREIGN KEY FK_7318AE6DB03A8386');
$this->addSql('ALTER TABLE prestashop_connector_bundle__customer_import_rule DROP FOREIGN KEY FK_7318AE6D896DBBDE');
$this->addSql('ALTER TABLE prestashop_connector_bundle__customer_import_rule DROP FOREIGN KEY FK_7318AE6DC76F1F52');
$this->addSql('DROP TABLE prestashop_connector_bundle__customer_import_rule');
}
}