diff --git a/Migrations/Postgresql/Version20171015140356.php b/Migrations/Postgresql/Version20171015140356.php index 51430db..d36820d 100644 --- a/Migrations/Postgresql/Version20171015140356.php +++ b/Migrations/Postgresql/Version20171015140356.php @@ -25,10 +25,6 @@ public function up(Schema $schema) { $this->abortIf($this->connection->getDatabasePlatform()->getName() != 'postgresql', 'Migration can only be executed safely on "postgresql".'); - $this->addSql('CREATE TABLE cm_neos_thememodule_domain_model_font (family VARCHAR(255) NOT NULL, category VARCHAR(255) DEFAULT \'\', fontsource VARCHAR(255) NOT NULL, variants TEXT NOT NULL, subsets TEXT NOT NULL, files TEXT NOT NULL, PRIMARY KEY(family))'); - $this->addSql('COMMENT ON COLUMN cm_neos_thememodule_domain_model_font.variants IS \'(DC2Type:array)\''); - $this->addSql('COMMENT ON COLUMN cm_neos_thememodule_domain_model_font.subsets IS \'(DC2Type:array)\''); - $this->addSql('COMMENT ON COLUMN cm_neos_thememodule_domain_model_font.files IS \'(DC2Type:array)\''); $this->addSql('CREATE TABLE cm_neos_thememodule_domain_model_settings (persistence_object_identifier VARCHAR(40) NOT NULL, customscss TEXT DEFAULT \'\', customcss TEXT DEFAULT \'\', customsettings TEXT DEFAULT \'\', PRIMARY KEY(persistence_object_identifier))'); } @@ -40,7 +36,6 @@ public function down(Schema $schema) { $this->abortIf($this->connection->getDatabasePlatform()->getName() != 'postgresql', 'Migration can only be executed safely on "postgresql".'); - $this->addSql('DROP TABLE cm_neos_thememodule_domain_model_font'); $this->addSql('DROP TABLE cm_neos_thememodule_domain_model_settings'); } }