selfhostable, read-only reddit client
16
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor: Update db schema to store password hashes instead of plaintext passwords

+1 -1
+1 -1
src/index.js
··· 9 9 CREATE TABLE IF NOT EXISTS users ( 10 10 id INTEGER PRIMARY KEY AUTOINCREMENT, 11 11 username TEXT UNIQUE, 12 - password TEXT 12 + password_hash TEXT 13 13 ) 14 14 `); 15 15