DatabaseUpdateScripts.cs 626 B

12345678910111213141516171819202122232425
  1. using Comal.Classes;
  2. using InABox.Core;
  3. using InABox.Database;
  4. using System.Collections.Generic;
  5. using System.Configuration.Provider;
  6. using System.Linq;
  7. using System.Linq.Expressions;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. using Syncfusion.Windows.Tools.Controls;
  11. using System.Diagnostics.CodeAnalysis;
  12. using System.Reflection;
  13. using System.Text.RegularExpressions;
  14. using FastReport.Utils;
  15. using PRS.Shared.Database_Update_Scripts;
  16. namespace PRS.Shared;
  17. public static class DatabaseUpdateScripts
  18. {
  19. public static void RegisterScripts()
  20. {
  21. DataUpdater.RegisterUpdateScript<Update_9_0_1>();
  22. }
  23. }