migrations/Version20220309055431.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace DoctrineMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. /**
  7.  * Auto-generated Migration: Please modify to your needs!
  8.  */
  9. final class Version20220309055431 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return 'add table time_entry_log';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         // this up() migration is auto-generated, please modify it to your needs
  18.         $this->addSql('CREATE SEQUENCE time_entry_log_id_seq INCREMENT BY 1 MINVALUE 1 START 1');
  19.         $this->addSql('CREATE TABLE time_entry_log (id INT NOT NULL, user_id UUID DEFAULT NULL, message TEXT NOT NULL, context TEXT, level SMALLINT NOT NULL, level_name VARCHAR(50) NOT NULL, channel VARCHAR(255) NOT NULL, created_at TIMESTAMP(0) WITHOUT TIME ZONE NOT NULL, PRIMARY KEY(id))');
  20.         $this->addSql('CREATE INDEX IDX_EEF51D7BA76ED395 ON time_entry_log (user_id)');
  21.         $this->addSql('COMMENT ON COLUMN time_entry_log.user_id IS \'(DC2Type:uuid)\'');
  22.         $this->addSql('COMMENT ON COLUMN time_entry_log.context IS \'(DC2Type:array)\'');
  23.         $this->addSql('COMMENT ON COLUMN time_entry_log.created_at IS \'(DC2Type:datetime_immutable)\'');
  24.         $this->addSql('ALTER TABLE time_entry_log ADD CONSTRAINT FK_EEF51D7BA76ED395 FOREIGN KEY (user_id) REFERENCES hub_user (id) NOT DEFERRABLE INITIALLY IMMEDIATE');
  25.         $this->addSql('ALTER TABLE time_entry ADD deleted_at TIMESTAMP(0) WITHOUT TIME ZONE DEFAULT NULL');
  26.     }
  27.     public function down(Schema $schema): void
  28.     {
  29.         // this down() migration is auto-generated, please modify it to your needs
  30.         $this->addSql('DROP SEQUENCE time_entry_log_id_seq CASCADE');
  31.         $this->addSql('DROP TABLE time_entry_log');
  32.         $this->addSql('ALTER TABLE time_entry DROP deleted_at');
  33.     }
  34. }