This commit is contained in:
@@ -22,16 +22,16 @@ namespace AyaNova.Util
|
||||
//!!!!WARNING: BE SURE TO UPDATE THE DbUtil::EmptyBizDataFromDatabaseForSeedingOrImporting WHEN NEW TABLES ADDED!!!!
|
||||
private const int DESIRED_SCHEMA_LEVEL = 1;
|
||||
|
||||
internal const long EXPECTED_COLUMN_COUNT = 963;
|
||||
internal const long EXPECTED_COLUMN_COUNT = 1000;
|
||||
internal const long EXPECTED_INDEX_COUNT = 138;
|
||||
internal const long EXPECTED_CHECK_CONSTRAINTS = 416;
|
||||
internal const long EXPECTED_FOREIGN_KEY_CONSTRAINTS = 118;
|
||||
internal const long EXPECTED_VIEWS = 6;
|
||||
internal const long EXPECTED_VIEWS = 7;
|
||||
internal const long EXPECTED_ROUTINES = 2;
|
||||
|
||||
//!!!!WARNING: BE SURE TO UPDATE THE DbUtil::EmptyBizDataFromDatabaseForSeedingOrImporting WHEN NEW TABLES ADDED!!!!
|
||||
|
||||
///////////////////////////////////////////////////////////////// C963:I138:CC416:FC118:V6:R2
|
||||
///////////////////////////////////////////////////////////////// C1000:I138:CC416:FC118:V7:R2
|
||||
|
||||
/*
|
||||
|
||||
@@ -890,6 +890,10 @@ $BODY$ LANGUAGE PLPGSQL STABLE");
|
||||
+ "left outer join vpartsonordercommitted on (vpartinventorynow.partid = vpartsonordercommitted.partid and vpartinventorynow.partwarehouseid = vpartsonordercommitted.partwarehouseid)"
|
||||
+ "left outer join vpartsonorder on (vpartinventorynow.partid = vpartsonorder.partid and vpartinventorynow.partwarehouseid = vpartsonorder.partwarehouseid)");
|
||||
|
||||
|
||||
//VIEWWORKORDER - adds AGE expression column for datalist queries
|
||||
await ExecQueryAsync("CREATE VIEW viewworkorder AS select aworkorder.*, AGE(timezone('UTC', now()), aworkorder.createddate) as expwoage from aworkorder");
|
||||
|
||||
//----------
|
||||
|
||||
//WORKORDERTEMPLATE
|
||||
|
||||
Reference in New Issue
Block a user