[DB] Update migrations for datetime update

This commit is contained in:
max
2025-09-02 16:17:47 +02:00
parent d98a99d145
commit a8b0291ebf
7 changed files with 58 additions and 11 deletions

View File

@@ -0,0 +1,12 @@
namespace Manager.App.Services.System;
public class SystemService : BackgroundService
{
private CancellationToken _cancellationToken { get; set; }
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
{
_cancellationToken = stoppingToken;
}
}