migrations/Version20240229094507.php line 1

Open in your IDE?
  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 Version20240229094507 extends AbstractMigration
    {
        public function getDescription(): string
        {
            return '';
        }
    
        public function up(Schema $schema): void
        {
            $this->addSql('INSERT INTO `global_settings` (`id`, `setting_key`, `setting_value`, `created_at`, `updated_at`, `deleted_at`) VALUES (NULL, "podbean_client_id", " ", "2024-02-29 15:13:34", NULL, NULL), (NULL, "podbean_client_secret", " ", "2024-02-29 15:13:34", NULL, NULL)');
            $this->addSql('INSERT INTO `global_settings` (`id`, `setting_key`, `setting_value`, `created_at`, `updated_at`, `deleted_at`) VALUES (NULL, "sightengine_api_key", " ", "2024-02-29 15:20:42", NULL, NULL), (NULL, "sightengine_api_secret", " ", "2024-02-29 15:20:42", NULL, NULL)');
        }
    
        public function down(Schema $schema): void
        {
    
        }
    }