1
0
Fork 0

[javascript] began reworking token handling to match what is done with the haskell client

This commit is contained in:
Julien Dessaux 2023-09-02 01:06:11 +02:00
parent a50ea1be7c
commit 9a71163dda
Signed by: adyxax
GPG key ID: F92E51B86E07177E
5 changed files with 50 additions and 41 deletions

View file

@ -1,8 +1,7 @@
CREATE TABLE schema_version (
version INTEGER NOT NULL
);
CREATE TABLE config (
CREATE TABLE tokens (
id INTEGER PRIMARY KEY,
key TEXT NOT NULL UNIQUE,
value TEXT NOT NULL
data TEXT NOT NULL
);