A secure password management tool
Replace DB to your link name
npx wrangler d1 execute DB --remote --command "CREATE TABLE IF NOT EXISTS users (id TEXT PRIMARY KEY, username TEXT, password_hash TEXT, salt TEXT, created_at INTEGER, updated_at INTEGER);"npx wrangler d1 execute DB --remote --command "CREATE TABLE IF NOT EXISTS password (id INTEGER PRIMARY KEY AUTOINCREMENT, user_id INTEGER NOT NULL, backup TEXT, created_at DATETIME DEFAULT CURRENT_TIMESTAMP, updated_at DATETIME DEFAULT CURRENT_TIMESTAMP, FOREIGN KEY (user_id) REFERENCES users(id) ON DELETE CASCADE, UNIQUE (user_id))"Modify wrangler.toml, use your configuration
npx wrangler deploynpm run tauri devnpm run tauri build


