<?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 Version20250212090326 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
$this->addSql("CREATE TABLE `tc_production_history_activity_log` (
`id` int NOT NULL AUTO_INCREMENT,
`production_history_id` int NOT NULL,
`company_id` int NOT NULL,
`latest_data_json` json NOT NULL,
`changed_data_json` json NOT NULL,
`action` varchar(255) NOT NULL,
`done_by` int NOT NULL,
`done_at` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `company_id` (`company_id`),
KEY `done_by` (`done_by`),
KEY `production_history_id` (`production_history_id`),
CONSTRAINT `tc_production_activity_log_ibfk_1` FOREIGN KEY (`company_id`) REFERENCES `company` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT,
CONSTRAINT `tc_production_activity_log_ibfk_2` FOREIGN KEY (`done_by`) REFERENCES `user` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT,
CONSTRAINT `tc_production_activity_log_ibfk_3` FOREIGN KEY (`production_history_id`) REFERENCES `tc_production_history` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4");
}
public function down(Schema $schema): void
{
$this->addSql("DROP TABLE tc_production_history_activity_log");
}
}