-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLocalDatabaseMigrator.cs
49 lines (45 loc) · 1.69 KB
/
LocalDatabaseMigrator.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using GDB.Tools.DatabaseMigration.Utilities.Logging;
using System;
using System.Collections.Generic;
using System.Data.SqlClient;
using System.Linq;
using System.Text;
namespace GDB.Tools.DatabaseMigration
{
public class LocalDatabaseMigrator
{
public static void Execute(string connectionString)
{
var sqlConn = new SqlConnection(connectionString);
var databaseName = sqlConn.Database;
Console.WriteLine($"UPG: === Starting Upgrade for: {databaseName} ===");
try
{
var log = DatabaseMigrator.UpgradeWithLog(connectionString);
foreach (var entry in log)
{
switch (entry.EntryType)
{
case LogType.Info:
case LogType.Warning:
Console.WriteLine($"UPG: {entry.EntryType.ToString()} - {entry.Message}");
break;
default:
Console.ForegroundColor = ConsoleColor.Red;
Console.Error.WriteLine($"UPG: {entry.EntryType.ToString()} - {entry.Message}");
Console.ResetColor();
break;
}
}
if (log.Any(e => e.EntryType == LogType.Error || e.EntryType == LogType.Critical))
{
throw new Exception($"Upgrade failed for {databaseName}, see log for details.");
}
}
finally
{
Console.WriteLine($"UPG: === Done Upgrade for: {databaseName} ===");
}
}
}
}