A convenient CLI tool to quickly spin up DragonflyBSD virtual machines using QEMU with sensible defaults.

Update updateInstanceState to set updatedAt timestamp on state change

+1 -1
+1 -1
src/state.ts
··· 53 53 Effect.tryPromise({ 54 54 try: () => 55 55 ctx.db.updateTable("virtual_machines") 56 - .set({ status, pid }) 56 + .set({ status, pid, updatedAt: new Date().toISOString() }) 57 57 .where((eb) => 58 58 eb.or([ 59 59 eb("name", "=", name),