@@ -14,18 +14,22 @@ import expiredData from './models/expiredData';
14
14
import form from './models/form' ;
15
15
import governingEntity from './models/governingEntity' ;
16
16
import governingEntityVersion from './models/governingEntityVersion' ;
17
+ import location from './models/location' ;
17
18
import operation from './models/operation' ;
18
19
import operationCluster from './models/operationCluster' ;
19
20
import participant from './models/participant' ;
20
- import project from './models/project' ;
21
21
import plan from './models/plan' ;
22
22
import planEntity from './models/planEntity' ;
23
23
import planEntityVersion from './models/planEntityVersion' ;
24
+ import planVersion from './models/planVersion' ;
25
+ import planYear from './models/planYear' ;
26
+ import project from './models/project' ;
24
27
import projectVersion from './models/projectVersion' ;
25
28
import projectVersionAttachment from './models/projectVersionAttachment' ;
26
29
import projectVersionPlan from './models/projectVersionPlan' ;
27
30
import reportingWindow from './models/reportingWindow' ;
28
31
import reportingWindowAssignment from './models/reportingWindowAssignment' ;
32
+ import usageYear from './models/usageYear' ;
29
33
import workflowStatusOption from './models/workflowStatusOption' ;
30
34
31
35
export default ( conn : Knex ) => ( {
@@ -44,17 +48,21 @@ export default (conn: Knex) => ({
44
48
form : form ( conn ) ,
45
49
governingEntity : governingEntity ( conn ) ,
46
50
governingEntityVersion : governingEntityVersion ( conn ) ,
51
+ location : location ( conn ) ,
47
52
operation : operation ( conn ) ,
48
53
operationCluster : operationCluster ( conn ) ,
49
54
participant : participant ( conn ) ,
50
55
plan : plan ( conn ) ,
51
56
planEntity : planEntity ( conn ) ,
52
57
planEntityVersion : planEntityVersion ( conn ) ,
58
+ planVersion : planVersion ( conn ) ,
59
+ planYear : planYear ( conn ) ,
53
60
project : project ( conn ) ,
54
61
projectVersion : projectVersion ( conn ) ,
55
62
projectVersionAttachment : projectVersionAttachment ( conn ) ,
56
63
projectVersionPlan : projectVersionPlan ( conn ) ,
57
64
reportingWindow : reportingWindow ( conn ) ,
58
65
reportingWindowAssignment : reportingWindowAssignment ( conn ) ,
66
+ usageYear : usageYear ( conn ) ,
59
67
workflowStatusOption : workflowStatusOption ( conn ) ,
60
68
} ) ;
0 commit comments