@@ -49,7 +49,7 @@ function mixinDiscovery(PostgreSQL) {
49
49
'table_name' , options ) ;
50
50
}
51
51
return sqlTables ;
52
- }
52
+ } ;
53
53
54
54
/*!
55
55
* Build sql for listing views
@@ -76,7 +76,7 @@ function mixinDiscovery(PostgreSQL) {
76
76
}
77
77
}
78
78
return sqlViews ;
79
- }
79
+ } ;
80
80
81
81
/**
82
82
* Discover model definitions
@@ -109,7 +109,7 @@ function mixinDiscovery(PostgreSQL) {
109
109
options : options ,
110
110
cb : cb ,
111
111
} ;
112
- }
112
+ } ;
113
113
114
114
/*!
115
115
* Build the sql statement to query columns for a given table
@@ -136,7 +136,7 @@ function mixinDiscovery(PostgreSQL) {
136
136
'table_name, ordinal_position' , { } ) ;
137
137
}
138
138
return sql ;
139
- }
139
+ } ;
140
140
141
141
/**
142
142
* Discover model properties from a table
@@ -183,7 +183,7 @@ function mixinDiscovery(PostgreSQL) {
183
183
}
184
184
sql += ' ORDER BY kc.table_schema, kc.table_name, kc.ordinal_position' ;
185
185
return sql ;
186
- }
186
+ } ;
187
187
188
188
/**
189
189
* Discover primary keys for a given table
@@ -231,7 +231,7 @@ function mixinDiscovery(PostgreSQL) {
231
231
sql += ' AND tc.table_name=\'' + table + '\'' ;
232
232
}
233
233
return sql ;
234
- }
234
+ } ;
235
235
236
236
/**
237
237
* Discover foreign keys for a given table
@@ -266,7 +266,7 @@ function mixinDiscovery(PostgreSQL) {
266
266
sql += ' order by kcu.table_schema, kcu.table_name, kcu.ordinal_position' ;
267
267
268
268
return sql ;
269
- }
269
+ } ;
270
270
271
271
/**
272
272
* Discover foreign keys that reference to the primary key of this table
@@ -306,7 +306,7 @@ function mixinDiscovery(PostgreSQL) {
306
306
default :
307
307
return 'String' ;
308
308
}
309
- }
309
+ } ;
310
310
311
311
/**
312
312
* Discover database indexes for the specified table
0 commit comments