<?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 Version20250425071205 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('UPDATE product SET publish = 0');
$this->addSql("INSERT INTO product (`title`, `tagline`, `description`, `slug`, `created_at`, `updated_at`, `created_by`, `updated_by`, `publish`, `position`, `category_id`) VALUES ('Contribution', 'Content Acquisition and enhacement Infrastructure', 'Content Acquisition and enhacement Infrastructure', 'contribution', '2017-11-21 00:00:00', '2017-11-21 00:00:00', 'bd7d231e-ac70-6d4c-e040-007f01001e43', 'bd7d231e-ac70-6d4c-e040-007f01001e43', 1, 30, 64)");
$this->addSql("INSERT INTO product (`title`, `tagline`, `description`, `slug`, `created_at`, `updated_at`, `created_by`, `updated_by`, `publish`, `position`, `category_id`) VALUES ('Distribution', 'Content Distribution across all channels', 'Content Distribution across all channels', 'distribution', '2017-11-21 00:00:00', '2017-11-21 00:00:00', 'bd7d231e-ac70-6d4c-e040-007f01001e43', 'bd7d231e-ac70-6d4c-e040-007f01001e43', 1, 31, 64)");
$this->addSql("INSERT INTO product (`title`, `tagline`, `description`, `slug`, `created_at`, `updated_at`, `created_by`, `updated_by`, `publish`, `position`, `category_id`) VALUES ('Major Events', 'High-profile events supported by a team of sports profesionals', 'High-profile events supported by a team of sports profesionals', 'major-events', '2017-11-21 00:00:00', '2017-11-21 00:00:00', 'bd7d231e-ac70-6d4c-e040-007f01001e43', 'bd7d231e-ac70-6d4c-e040-007f01001e43', 1, 32, 64)");
$this->addSql("INSERT INTO product (`title`, `tagline`, `description`, `slug`, `created_at`, `updated_at`, `created_by`, `updated_by`, `publish`, `position`, `category_id`) VALUES ('Dedicated Services', 'On-site dedicated services', 'On-site dedicated services', 'dedicated-services', '2017-11-21 00:00:00', '2017-11-21 00:00:00', 'bd7d231e-ac70-6d4c-e040-007f01001e43', 'bd7d231e-ac70-6d4c-e040-007f01001e43', 1, 33, 64)");
$this->addSql("INSERT INTO product (`title`, `tagline`, `description`, `slug`, `created_at`, `updated_at`, `created_by`, `updated_by`, `publish`, `position`, `category_id`) VALUES ('Aggregation Services', 'Aggregation of content and delivery to customers', 'Aggregation of content and delivery to customers', 'aggregation-services', '2017-11-21 00:00:00', '2017-11-21 00:00:00', 'bd7d231e-ac70-6d4c-e040-007f01001e43', 'bd7d231e-ac70-6d4c-e040-007f01001e43', 1, 34, 64)");
$this->addSql("INSERT INTO product (`title`, `tagline`, `description`, `slug`, `created_at`, `updated_at`, `created_by`, `updated_by`, `publish`, `position`, `category_id`) VALUES ('Permanent Services', 'Connectivity and video services', 'Connectivity and video services', 'permanent-services', '2017-11-21 00:00:00', '2017-11-21 00:00:00', 'bd7d231e-ac70-6d4c-e040-007f01001e43', 'bd7d231e-ac70-6d4c-e040-007f01001e43', 1, 35, 64)");
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
}
}