<?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 Version20230831211532 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 TABLE std_firebase_tokens (id INT UNSIGNED AUTO_INCREMENT NOT NULL COMMENT \'Firebase tokens unique identifier\', user_id INT UNSIGNED DEFAULT NULL COMMENT \'Unique identifier\', token VARCHAR(255) NOT NULL COMMENT \'Firebase token\', created_date DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL COMMENT \'Date and time of the record creation\', INDEX fk_std_firebase_tokens_std_users (user_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('ALTER TABLE std_firebase_tokens ADD CONSTRAINT FK_4A57985A76ED395 FOREIGN KEY (user_id) REFERENCES std_web_users (id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE std_firebase_tokens DROP FOREIGN KEY FK_4A57985A76ED395');
$this->addSql('DROP TABLE std_firebase_tokens');
}
}