Store the dates using unix timestamps

This commit is contained in:
Rodolphe Bréard 2023-04-10 00:30:31 +02:00
parent 617230664c
commit 49493f06f7
2 changed files with 8 additions and 7 deletions

View file

@ -2,9 +2,9 @@ CREATE TABLE key_db (
selector TEXT,
sdid TEXT,
algorithm TEXT,
creation TEXT,
not_after TEXT,
revocation TEXT,
creation INTEGER,
not_after INTEGER,
revocation INTEGER,
private_key TEXT,
public_key TEXT
);