postDao = $postDao; $this->historyService = $historyService; } public function run(\Szurubooru\DatabaseConnection $databaseConnection) { $pdo = $databaseConnection->getPDO(); $pdo->exec('DROP TABLE IF EXISTS snapshots'); $pdo->exec('CREATE TABLE snapshots ( id INTEGER PRIMARY KEY NOT NULL, time TIMESTAMP NOT NULL, type INTEGER NOT NULL, primaryKey TEXT NOT NULL, operation INTEGER NOT NULL, userId INTEGER, data BLOB, dataDifference BLOB )'); foreach ($this->postDao->findAll() as $post) { $this->historyService->saveSnapshot($this->historyService->getPostChangeSnapshot($post)); } } }