feat: migrations update

Added tool for migrations
Updated AmineContentCalibration db
Create AmineContentResults db
This commit is contained in:
2025-12-15 15:29:52 +03:00
parent 567122f2e4
commit 6a2b4a5970
11 changed files with 589 additions and 5 deletions
@@ -0,0 +1,21 @@
using GSS2.Core.Analysis.AmineContent.Database;
using Microsoft.Extensions.Logging;
namespace GSS2.Core.Analysis.AmineContent;
public class AmineContentResultsDataService
{
private readonly ILogger<AmineContentResultsDataService> _logger;
private AmineContentCalibrationContext _calibrationContext;
public AmineContentResultsDataService(ILogger<AmineContentResultsDataService> logger, AmineContentCalibrationContext calibrationContext)
{
_logger = logger;
_calibrationContext = calibrationContext;
}
public async Task LoadData(CancellationToken cancellationToken = default)
{
//TODO
}
}