* Auto-generated Migration: Please modify to your needs!
12
*/
13
final class Version20200122082429 extends AbstractMigration
14
{
15
public function getDescription() : string
16
{
17
return '';
18
}
19
20
public function up(Schema $schema) : void
21
{
22
// this up() migration is auto-generated, please modify it to your needs
23
$this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.');
24
25
$this->addSql('CREATE TABLE sylius_channel_countries (channel_id INT NOT NULL, country_id INT NOT NULL, INDEX IDX_D96E51AE72F5A1AA (channel_id), INDEX IDX_D96E51AEF92F3E70 (country_id), PRIMARY KEY(channel_id, country_id)) DEFAULT CHARACTER SET UTF8 COLLATE `UTF8_unicode_ci` ENGINE = InnoDB');