addSql('DROP SEQUENCE chill_docgen_template_id_seq CASCADE'); $this->addSql('DROP TABLE chill_docgen_template'); } public function getDescription(): string { return 'Creation of table for storing DocGenTemplate'; } public function up(Schema $schema): void { $this->addSql('CREATE SEQUENCE chill_docgen_template_id_seq INCREMENT BY 1 MINVALUE 1 START 1'); $this->addSql('CREATE TABLE chill_docgen_template (id INT NOT NULL, name JSON NOT NULL, description TEXT DEFAULT NULL, file VARCHAR(255) NOT NULL, PRIMARY KEY(id))'); } }