hasTable('taskprocessing_tasks')) { $table = $schema->getTable('taskprocessing_tasks'); $table->addColumn('scheduled_at', Types::INTEGER, [ 'notnull' => false, 'default' => null, 'unsigned' => true, ]); $table->addColumn('started_at', Types::INTEGER, [ 'notnull' => false, 'default' => null, 'unsigned' => true, ]); $table->addColumn('ended_at', Types::INTEGER, [ 'notnull' => false, 'default' => null, 'unsigned' => true, ]); return $schema; } return null; } }