From ea48065b92e550963723f96a40b361385b4ba387 Mon Sep 17 00:00:00 2001 From: kiy0taka Date: Tue, 2 Mar 2021 15:29:50 +0900 Subject: [PATCH] =?UTF-8?q?=E4=B8=8D=E8=A6=81=E3=81=AA=E3=83=9E=E3=82=A4?= =?UTF-8?q?=E3=82=B0=E3=83=AC=E3=83=BC=E3=82=B7=E3=83=A7=E3=83=B3=E3=82=AF?= =?UTF-8?q?=E3=83=A9=E3=82=B9=E3=81=AE=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Version20200810140539.php | 28 ------------------- 1 file changed, 28 deletions(-) delete mode 100644 app/DoctrineMigrations/Version20200810140539.php diff --git a/app/DoctrineMigrations/Version20200810140539.php b/app/DoctrineMigrations/Version20200810140539.php deleted file mode 100644 index 07c99e74400..00000000000 --- a/app/DoctrineMigrations/Version20200810140539.php +++ /dev/null @@ -1,28 +0,0 @@ -abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.'); - - $this->addSql('ALTER TABLE dtb_base_info ADD option_require_kana TINYINT(1) DEFAULT \'1\' NOT NULL'); - } - - 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 dtb_base_info DROP option_require_kana'); - } -}