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

10
SqliteTableDefinition.cs Normal file
View File

@@ -0,0 +1,10 @@
namespace DbMigrate {
public class SqliteTableDefinition {
public string @type { get; set; }
public string name { get; set; }
public string tbl_name { get; set; }
public int rootpage { get; set; }
public string sql { get; set; }
}
}