mirror of
https://github.com/pockethost/pockethost.git
synced 2025-03-30 15:08:30 +00:00
11 lines
233 B
JavaScript
11 lines
233 B
JavaScript
/// <reference path="../pb_data/types.d.ts" />
|
|
|
|
migrate(
|
|
(db) => {
|
|
db.newQuery(
|
|
'UPDATE invocations SET uid = (select uid from instances where instances.id = invocations.instanceId)',
|
|
).execute()
|
|
},
|
|
(db) => {},
|
|
)
|