( ! ) Deprecated: Constant E_STRICT is deprecated in /var/www/altergi.net/vendor/symfony/error-handler/ErrorHandler.php on line 58
Call Stack
#TimeMemoryFunctionLocation
10.0001361080{main}( ).../index.php:0
20.0001361560require_once( '/var/www/altergi.net/vendor/autoload_runtime.php ).../index.php:5
30.0004367528Symfony\Component\Runtime\SymfonyRuntime->__construct( $options = ['project_dir' => '/var/www/altergi.net'] ).../autoload_runtime.php:16
40.0009371632Symfony\Component\Runtime\GenericRuntime->__construct( $options = ['project_dir' => '/var/www/altergi.net', 'env_var_name' => 'APP_ENV', 'debug_var_name' => 'APP_DEBUG', 'debug' => TRUE, 'disable_dotenv' => TRUE, 'error_handler' => 'Symfony\\Component\\Runtime\\Internal\\SymfonyErrorHandler'] ).../SymfonyRuntime.php:128
50.0009371632Symfony\Component\Runtime\Internal\SymfonyErrorHandler::register( $debug = TRUE ).../GenericRuntime.php:76

( ! ) Deprecated: Constant E_STRICT is deprecated in /var/www/altergi.net/vendor/symfony/error-handler/ErrorHandler.php on line 76
Call Stack
#TimeMemoryFunctionLocation
10.0001361080{main}( ).../index.php:0
20.0001361560require_once( '/var/www/altergi.net/vendor/autoload_runtime.php ).../index.php:5
30.0004367528Symfony\Component\Runtime\SymfonyRuntime->__construct( $options = ['project_dir' => '/var/www/altergi.net'] ).../autoload_runtime.php:16
40.0009371632Symfony\Component\Runtime\GenericRuntime->__construct( $options = ['project_dir' => '/var/www/altergi.net', 'env_var_name' => 'APP_ENV', 'debug_var_name' => 'APP_DEBUG', 'debug' => TRUE, 'disable_dotenv' => TRUE, 'error_handler' => 'Symfony\\Component\\Runtime\\Internal\\SymfonyErrorHandler'] ).../SymfonyRuntime.php:128
50.0009371632Symfony\Component\Runtime\Internal\SymfonyErrorHandler::register( $debug = TRUE ).../GenericRuntime.php:76
Symfony Profiler

migrations/Version20220218131302.php line 1

  1. <?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 Version20220218131302 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 message (id INT AUTO_INCREMENT NOT NULL, place_origin_id INT DEFAULT NULL, date_time DATETIME NOT NULL COMMENT \'(DC2Type:datetime_immutable)\', content LONGTEXT NOT NULL, INDEX IDX_B6BD307F2239FAB1 (place_origin_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
            $this->addSql('ALTER TABLE message ADD CONSTRAINT FK_B6BD307F2239FAB1 FOREIGN KEY (place_origin_id) REFERENCES place (id)');
        }
    
        public function down(Schema $schema): void
        {
            // this down() migration is auto-generated, please modify it to your needs
            $this->addSql('DROP TABLE message');
            $this->addSql('ALTER TABLE path CHANGE name name VARCHAR(255) NOT NULL COLLATE `utf8mb4_unicode_ci`');
            $this->addSql('ALTER TABLE place CHANGE name name VARCHAR(255) NOT NULL COLLATE `utf8mb4_unicode_ci`');
            $this->addSql('ALTER TABLE user CHANGE email email VARCHAR(180) NOT NULL COLLATE `utf8mb4_unicode_ci`, CHANGE password password VARCHAR(255) NOT NULL COLLATE `utf8mb4_unicode_ci`, CHANGE nickname nickname VARCHAR(255) NOT NULL COLLATE `utf8mb4_unicode_ci`');
        }
    }