You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// this up() migration is auto-generated, please modify it to your needs
16
+
$this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.');
17
+
18
+
$this->addSql('CREATE TABLE import_run (id INT AUTO_INCREMENT NOT NULL, datetime DATETIME NOT NULL, result TINYINT(1) NOT NULL, output LONGTEXT DEFAULT NULL, type VARCHAR(255) NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci ENGINE = InnoDB');
19
+
}
20
+
21
+
publicfunctiondown(Schema$schema) : void
22
+
{
23
+
// this down() migration is auto-generated, please modify it to your needs
24
+
$this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.');
0 commit comments