From fa42c99f752a9891ce006c26adf19c9af2c9aa75 Mon Sep 17 00:00:00 2001 From: Ryan Prather Date: Wed, 24 Apr 2024 08:42:54 -0400 Subject: [PATCH] add reference table --- migrations/Version20240424081416.php | 45 ++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 migrations/Version20240424081416.php diff --git a/migrations/Version20240424081416.php b/migrations/Version20240424081416.php new file mode 100644 index 0000000..6382569 --- /dev/null +++ b/migrations/Version20240424081416.php @@ -0,0 +1,45 @@ +addSql('CREATE TABLE reference (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, type VARCHAR(64) NOT NULL, name VARCHAR(255) NOT NULL, label VARCHAR(10) NOT NULL, ndx INTEGER DEFAULT NULL, content CLOB NOT NULL)'); + $this->addSql('CREATE TEMPORARY TABLE __temp__notes AS SELECT id, speaker_id, series_id, title, text, date FROM notes'); + $this->addSql('DROP TABLE notes'); + $this->addSql('CREATE TABLE notes (id INTEGER NOT NULL, speaker_id INTEGER NOT NULL, series_id INTEGER DEFAULT NULL, title VARCHAR(255) NOT NULL, text CLOB NOT NULL, date DATE NOT NULL, PRIMARY KEY(id), CONSTRAINT FK_11BA68CD04A0F27 FOREIGN KEY (speaker_id) REFERENCES speaker (id) ON UPDATE NO ACTION ON DELETE NO ACTION NOT DEFERRABLE INITIALLY IMMEDIATE, CONSTRAINT FK_11BA68C5278319C FOREIGN KEY (series_id) REFERENCES series (id) ON UPDATE NO ACTION ON DELETE NO ACTION NOT DEFERRABLE INITIALLY IMMEDIATE)'); + $this->addSql('INSERT INTO notes (id, speaker_id, series_id, title, text, date) SELECT id, speaker_id, series_id, title, text, date FROM __temp__notes'); + $this->addSql('DROP TABLE __temp__notes'); + $this->addSql('CREATE INDEX IDX_11BA68CD04A0F27 ON notes (speaker_id)'); + $this->addSql('CREATE INDEX IDX_11BA68C5278319C ON notes (series_id)'); + } + + public function down(Schema $schema): void + { + // this down() migration is auto-generated, please modify it to your needs + $this->addSql('DROP TABLE reference'); + $this->addSql('CREATE TEMPORARY TABLE __temp__notes AS SELECT id, speaker_id, series_id, title, text, date FROM notes'); + $this->addSql('DROP TABLE notes'); + $this->addSql('CREATE TABLE notes (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, speaker_id INTEGER NOT NULL, series_id INTEGER DEFAULT NULL, title VARCHAR(255) NOT NULL, text CLOB NOT NULL, date DATE NOT NULL, CONSTRAINT FK_11BA68CD04A0F27 FOREIGN KEY (speaker_id) REFERENCES speaker (id) NOT DEFERRABLE INITIALLY IMMEDIATE, CONSTRAINT FK_11BA68C5278319C FOREIGN KEY (series_id) REFERENCES series (id) NOT DEFERRABLE INITIALLY IMMEDIATE)'); + $this->addSql('INSERT INTO notes (id, speaker_id, series_id, title, text, date) SELECT id, speaker_id, series_id, title, text, date FROM __temp__notes'); + $this->addSql('DROP TABLE __temp__notes'); + $this->addSql('CREATE INDEX IDX_11BA68CD04A0F27 ON notes (speaker_id)'); + $this->addSql('CREATE INDEX IDX_11BA68C5278319C ON notes (series_id)'); + } +}