|
| 1 | +export const ENSURE_SCHEMA = ` |
| 2 | +create table if not exists SyncStatus( |
| 3 | + tableName text primary key |
| 4 | + ,syncType text not null |
| 5 | + ,syncValue text |
| 6 | + ,startTime real not null |
| 7 | + ,asOfTime real not null |
| 8 | +); |
| 9 | +
|
| 10 | +create table if not exists ObjectValue( |
| 11 | + id integer primary key |
| 12 | + ,xledgerDbId integer unique |
| 13 | + ,code text |
| 14 | + ,description text |
| 15 | +); |
| 16 | +
|
| 17 | +create table if not exists Project( |
| 18 | + id integer primary key |
| 19 | + ,xledgerDbId integer unique |
| 20 | + ,fromDate dateInt |
| 21 | + ,toDate dateInt |
| 22 | + ,code text |
| 23 | + ,description text |
| 24 | + ,createdAt dateTimeReal |
| 25 | + ,modifiedAt dateTimeReal |
| 26 | + ,"text" text |
| 27 | + ,ownerDbId integer |
| 28 | + ,email text |
| 29 | + ,yourReference text |
| 30 | + ,extIdentifier text |
| 31 | + ,external boolInt |
| 32 | + ,billable boolInt |
| 33 | + ,fixedClient boolInt |
| 34 | + ,allowPosting boolInt |
| 35 | + ,timesheetEntry boolInt |
| 36 | + ,accessControl boolInt |
| 37 | + ,assignment boolInt |
| 38 | + ,activity boolInt |
| 39 | + ,extOrder text |
| 40 | + ,contract text |
| 41 | + ,progressDate dateTimeReal |
| 42 | + ,pctCompleted real |
| 43 | + ,overview text |
| 44 | + ,expenseLedger boolInt |
| 45 | + ,fundProject boolInt |
| 46 | + ,invoiceHeader text |
| 47 | + ,invoiceFooter text |
| 48 | + ,totalRevenue real |
| 49 | + ,yearlyRevenue real |
| 50 | + ,contractedRevenue real |
| 51 | + ,totalCost real |
| 52 | + ,yearlyCost real |
| 53 | + ,totalEstimateHours real |
| 54 | + ,yearlyEstimateHours real |
| 55 | + ,budgetCoveragePercent real |
| 56 | + ,shortInfo text |
| 57 | + ,shortInternalInfo text |
| 58 | + ,mainProjectId projectInt |
| 59 | + ,xglId objectValueInt |
| 60 | + ,glObject5Id objectValueInt |
| 61 | + ,glObject4Id objectValueInt |
| 62 | + ,glObject3Id objectValueInt |
| 63 | + ,glObject2Id objectValueInt |
| 64 | + ,glObject1Id objectValueInt |
| 65 | +); |
| 66 | +`; |
| 67 | + |
| 68 | +export const UPSERT_PROJECT = ` |
| 69 | +insert into Project( |
| 70 | + "xledgerDbId", "fromDate", "toDate", |
| 71 | + "code", "description", "createdAt", |
| 72 | + "modifiedAt", "text", "email", |
| 73 | + "yourReference", "extIdentifier", "external", |
| 74 | + "billable", "fixedClient", "allowPosting", |
| 75 | + "timesheetEntry", "accessControl", "assignment", |
| 76 | + "activity", "extOrder", "contract", |
| 77 | + "progressDate", "pctCompleted", "overview", |
| 78 | + "expenseLedger", "fundProject", "invoiceHeader", |
| 79 | + "invoiceFooter", "totalRevenue", "yearlyRevenue", |
| 80 | + "contractedRevenue", "totalCost", "yearlyCost", |
| 81 | + "totalEstimateHours", "yearlyEstimateHours", "budgetCoveragePercent", |
| 82 | + "mainProjectId", "shortInfo", "shortInternalInfo", |
| 83 | + "xglId", "glObject1Id", "glObject2Id", |
| 84 | + "glObject3Id", "glObject4Id", "glObject5Id" |
| 85 | + ) |
| 86 | + values ( |
| 87 | + $xledgerDbId, $fromDate, $toDate, |
| 88 | + $code, $description, $createdAt, |
| 89 | + $modifiedAt, $text, $email, |
| 90 | + $yourReference, $extIdentifier, $external, |
| 91 | + $billable, $fixedClient, $allowPosting, |
| 92 | + $timesheetEntry, $accessControl, $assignment, |
| 93 | + $activity, $extOrder, $contract, |
| 94 | + $progressDate, $pctCompleted, $overview, |
| 95 | + $expenseLedger, $fundProject, $invoiceHeader, |
| 96 | + $invoiceFooter, $totalRevenue, $yearlyRevenue, |
| 97 | + $contractedRevenue, $totalCost, $yearlyCost, |
| 98 | + $totalEstimateHours, $yearlyEstimateHours, $budgetCoveragePercent, |
| 99 | + $mainProjectId, $shortInfo, $shortInternalInfo, |
| 100 | + $xglId, $glObject1Id, $glObject2Id, |
| 101 | + $glObject3Id, $glObject4Id, $glObject5Id |
| 102 | + ) |
| 103 | + on conflict(xledgerDbId) |
| 104 | + do update set |
| 105 | + "fromDate" = excluded."fromDate" |
| 106 | + ,"toDate" = excluded."toDate" |
| 107 | + ,"code" = excluded."code" |
| 108 | + ,"description" = excluded."description" |
| 109 | + ,"createdAt" = excluded."createdAt" |
| 110 | + ,"modifiedAt" = excluded."modifiedAt" |
| 111 | + ,"text" = excluded."text" |
| 112 | + ,"email" = excluded."email" |
| 113 | + ,"yourReference" = excluded."yourReference" |
| 114 | + ,"extIdentifier" = excluded."extIdentifier" |
| 115 | + ,"external" = excluded."external" |
| 116 | + ,"billable" = excluded."billable" |
| 117 | + ,"fixedClient" = excluded."fixedClient" |
| 118 | + ,"allowPosting" = excluded."allowPosting" |
| 119 | + ,"timesheetEntry" = excluded."timesheetEntry" |
| 120 | + ,"accessControl" = excluded."accessControl" |
| 121 | + ,"assignment" = excluded."assignment" |
| 122 | + ,"activity" = excluded."activity" |
| 123 | + ,"extOrder" = excluded."extOrder" |
| 124 | + ,"contract" = excluded."contract" |
| 125 | + ,"progressDate" = excluded."progressDate" |
| 126 | + ,"pctCompleted" = excluded."pctCompleted" |
| 127 | + ,"overview" = excluded."overview" |
| 128 | + ,"expenseLedger" = excluded."expenseLedger" |
| 129 | + ,"fundProject" = excluded."fundProject" |
| 130 | + ,"invoiceHeader" = excluded."invoiceHeader" |
| 131 | + ,"invoiceFooter" = excluded."invoiceFooter" |
| 132 | + ,"totalRevenue" = excluded."totalRevenue" |
| 133 | + ,"yearlyRevenue" = excluded."yearlyRevenue" |
| 134 | + ,"contractedRevenue" = excluded."contractedRevenue" |
| 135 | + ,"totalCost" = excluded."totalCost" |
| 136 | + ,"yearlyCost" = excluded."yearlyCost" |
| 137 | + ,"totalEstimateHours" = excluded."totalEstimateHours" |
| 138 | + ,"yearlyEstimateHours" = excluded."yearlyEstimateHours" |
| 139 | + ,"budgetCoveragePercent" = excluded."budgetCoveragePercent" |
| 140 | + ,"mainProjectId" = excluded."mainProjectId" |
| 141 | + ,"shortInfo" = excluded."shortInfo" |
| 142 | + ,"shortInternalInfo" = excluded."shortInternalInfo" |
| 143 | + ,"xglId" = excluded."xglId" |
| 144 | + ,"glObject1Id" = excluded."glObject1Id" |
| 145 | + ,"glObject2Id" = excluded."glObject2Id" |
| 146 | + ,"glObject3Id" = excluded."glObject3Id" |
| 147 | + ,"glObject4Id" = excluded."glObject4Id" |
| 148 | + ,"glObject5Id" = excluded."glObject5Id" |
| 149 | +`; |
0 commit comments