This commit is contained in:
2021-05-21 18:59:20 +00:00
parent c9366b1728
commit 2bd36f2626
3 changed files with 43 additions and 11 deletions

View File

@@ -253,9 +253,9 @@ namespace AyaNova.Util
await ExecQueryAsync("CREATE TABLE aglobalbizsettings (id INTEGER NOT NULL PRIMARY KEY, "
+ "searchcasesensitiveonly BOOL DEFAULT FALSE, "
+ "useinventory BOOL DEFAULT TRUE, "
+ "taxpartpurchaseid BIGINT, "
+ "taxpartsaleid BIGINT, "
+ "taxratesaleid BIGINT, "
+ "taxpartpurchaseid BIGINT REFERENCES ataxcode, "
+ "taxpartsaleid BIGINT REFERENCES ataxcode, "
+ "taxratesaleid BIGINT REFERENCES ataxcode, "
+ "workordercompletebyage INTERVAL NOT NULL DEFAULT '00:00:00'"
+ ")");