42 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| declare(strict_types=1);
 | |
| 
 | |
| namespace DoctrineMigrations;
 | |
| 
 | |
| use Doctrine\DBAL\Schema\Schema;
 | |
| use Doctrine\Migrations\AbstractMigration;
 | |
| 
 | |
| /**
 | |
|  * Auto-generated Migration: Please modify to your needs!
 | |
|  */
 | |
| final class Version20240513161129 extends AbstractMigration
 | |
| {
 | |
|     public function getDescription(): string
 | |
|     {
 | |
|         return '';
 | |
|     }
 | |
| 
 | |
|     public function up(Schema $schema): void
 | |
|     {
 | |
|         // this up() migration is auto-generated, please modify it to your needs
 | |
|         $this->addSql('CREATE TEMPORARY TABLE __temp__reference AS SELECT id, type, name, label, ndx, content FROM reference');
 | |
|         $this->addSql('DROP TABLE reference');
 | |
|         $this->addSql('CREATE TABLE reference (id BLOB NOT NULL --(DC2Type:uuid)
 | |
|         , type VARCHAR(255) NOT NULL, name VARCHAR(255) NOT NULL, label VARCHAR(255) NOT NULL, ndx INTEGER DEFAULT NULL, content CLOB DEFAULT NULL, PRIMARY KEY(id))');
 | |
|         $this->addSql('INSERT INTO reference (id, type, name, label, ndx, content) SELECT id, type, name, label, ndx, content FROM __temp__reference');
 | |
|         $this->addSql('DROP TABLE __temp__reference');
 | |
|     }
 | |
| 
 | |
|     public function down(Schema $schema): void
 | |
|     {
 | |
|         // this down() migration is auto-generated, please modify it to your needs
 | |
|         $this->addSql('CREATE TEMPORARY TABLE __temp__reference AS SELECT id, type, name, label, ndx, content FROM reference');
 | |
|         $this->addSql('DROP TABLE reference');
 | |
|         $this->addSql('CREATE TABLE reference (id BLOB NOT NULL --(DC2Type:uuid)
 | |
|         , type VARCHAR(255) NOT NULL, name VARCHAR(255) NOT NULL, label VARCHAR(255) NOT NULL, ndx INTEGER NOT NULL, content CLOB DEFAULT NULL, PRIMARY KEY(id))');
 | |
|         $this->addSql('INSERT INTO reference (id, type, name, label, ndx, content) SELECT id, type, name, label, ndx, content FROM __temp__reference');
 | |
|         $this->addSql('DROP TABLE __temp__reference');
 | |
|     }
 | |
| }
 |