<?php
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 Version20200124183550 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->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.');
$this->addSql('CREATE TABLE resource_email_template (resource_id INT NOT NULL, email_template_id INT NOT NULL, INDEX IDX_EE488B6989329D25 (resource_id), INDEX IDX_EE488B69131A730F (email_template_id), PRIMARY KEY(resource_id, email_template_id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('CREATE TABLE email_template (id INT AUTO_INCREMENT NOT NULL, recipient VARCHAR(128) NOT NULL, subject VARCHAR(255) NOT NULL, template LONGTEXT NOT NULL, name VARCHAR(255) NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('ALTER TABLE resource_email_template ADD CONSTRAINT FK_EE488B6989329D25 FOREIGN KEY (resource_id) REFERENCES resource (id) ON DELETE CASCADE');
$this->addSql('ALTER TABLE resource_email_template ADD CONSTRAINT FK_EE488B69131A730F FOREIGN KEY (email_template_id) REFERENCES email_template (id) ON DELETE CASCADE');
$this->addSql('INSERT INTO email_template (recipient, subject, template, name) VALUES (\'{{ouEmail}}\', \'Enquiry: {{resourcesText}}\', \'<p>From: {{booking.customer.displayName}}<br />
Resource(s): {{resourcesText}}<br />
Email: {{booking.customer.email}}<br />
Mobile: {{booking.customer.telephone}}<br />
Date: {{ booking.start | date('d-M-Y') }}</p>
<p>{{ booking.notes|nl2br }}</p>
<p>Go to the Dashboard: <a href=\"{{ homeUrl }}\">{{ homeUrl }}</a></p>
<p>Go to the Enquiry: <a href=\"{{ bookingUrl }}\">{{ bookingUrl }}</a></p>\', \'Booking notification\')');
}
public function down(Schema $schema) : void
{
// this down() migration is auto-generated, please modify it to your needs
$this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.');
$this->addSql('ALTER TABLE resource_email_template DROP FOREIGN KEY FK_EE488B69131A730F');
$this->addSql('DROP TABLE resource_email_template');
$this->addSql('DROP TABLE email_template');
}
}