Update DatabaseKeyStore.ts

This commit is contained in:
Nils Streijffert
2021-02-04 15:14:18 +01:00
committed by GitHub
parent 2a49b2cc5f
commit a816fd2f33
@@ -27,7 +27,7 @@ const migrationsDir = resolvePackagePath(
const TABLE = 'signing_keys';
type Row = {
created_at: Date; //row.created_at is a string after being returned from the database
created_at: Date; // row.created_at is a string after being returned from the database
kid: string;
key: string;
};