selfhostable, read-only reddit client

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

Changed files
+1 -1
src
+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