( ! ) 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.0010371632Symfony\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.0010371632Symfony\Component\Runtime\Internal\SymfonyErrorHandler::register( $debug = TRUE ).../GenericRuntime.php:76
Symfony Profiler

migrations/Version20231024052728.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 Version20231024052728 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 user_message (id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, sender_id INTEGER NOT NULL, recipient_id INTEGER NOT NULL, title VARCHAR(255) NOT NULL, message CLOB NOT NULL, created_at DATETIME NOT NULL --(DC2Type:datetime_immutable)
            , is_read BOOLEAN NOT NULL, CONSTRAINT FK_EEB02E75F624B39D FOREIGN KEY (sender_id) REFERENCES user (id) NOT DEFERRABLE INITIALLY IMMEDIATE, CONSTRAINT FK_EEB02E75F1B7C6C FOREIGN KEY (recipient_id) REFERENCES user (id) NOT DEFERRABLE INITIALLY IMMEDIATE)');
            $this->addSql('CREATE INDEX IDX_EEB02E75F624B39D ON user_message (sender_id)');
            $this->addSql('CREATE INDEX IDX_EEB02E75F1B7C6C ON user_message (recipient_id)');
        }
    
        public function down(Schema $schema): void
        {
            // this down() migration is auto-generated, please modify it to your needs
            $this->addSql('DROP TABLE user_message');
        }
    }