A gateway/firewall task to be able to talk someone about the real job
Fibinger Ádám
2021-10-22 e3c5369dcc89531b88f7abe421f1bf1b6f69d223
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?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 Version20211022202051 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 secret (hash VARCHAR(255) NOT NULL, secret_text VARCHAR(255) NOT NULL, created_at DATETIME NOT NULL --(DC2Type:datetime_immutable)
        , expires_at DATETIME DEFAULT NULL --(DC2Type:datetime_immutable)
        , remaining_views INTEGER NOT NULL, PRIMARY KEY(hash))');
    }
 
    public function down(Schema $schema): void
    {
        // this down() migration is auto-generated, please modify it to your needs
        $this->addSql('DROP TABLE secret');
    }
}