Added tester and DbComparer

This commit is contained in:
2025-08-29 20:15:19 -05:00
parent 5876ac0e8a
commit 8cc304c3d2
24 changed files with 1514 additions and 24 deletions

View File

@@ -16,6 +16,9 @@ namespace DbMigrate {
bool inTable = false;
bool inColumns = false;
Match m = null;
foreach (string line in Regex.Split(sql, "\\r\\n")) {
if (string.IsNullOrEmpty(line) || line.StartsWith("--")) {