fix(autobrrctl): change password for user (#11)

This commit is contained in:
Ludvig Lundgren 2021-08-19 20:41:32 +02:00 committed by GitHub
parent b8edeb5f31
commit eb5b040eeb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 6 deletions

View file

@ -12,7 +12,8 @@ CREATE TABLE users
username TEXT NOT NULL,
password TEXT NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
updated_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
UNIQUE (username)
);
CREATE TABLE indexer