File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -326,20 +326,20 @@ private extension SQLiteStorageEngine {
326326}
327327
328328private extension SQLiteStorageEngine . Expressions {
329- var keyRow : Expression < String > {
330- Expression < String > ( " key " )
329+ var keyRow : SQLite . Expression < String > {
330+ SQLite . Expression< String> ( " key " )
331331 }
332332
333- var dataRow : Expression < Data > {
334- Expression < Data > ( " value " )
333+ var dataRow : SQLite . Expression < Data > {
334+ SQLite . Expression< Data> ( " value " )
335335 }
336336
337- var createdAtRow : Expression < Date > {
338- Expression < Date > ( " createdAt " )
337+ var createdAtRow : SQLite . Expression < Date > {
338+ SQLite . Expression< Date> ( " createdAt " )
339339 }
340340
341- var updatedAtRow : Expression < Date > {
342- Expression < Date > ( " updatedAt " )
341+ var updatedAtRow : SQLite . Expression < Date > {
342+ SQLite . Expression< Date> ( " updatedAt " )
343343 }
344344}
345345
You can’t perform that action at this time.
0 commit comments