You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE TABLE IF NOT EXISTS ciphers (
id TEXT PRIMARY KEY,
user_id TEXT NOT NULL,
type INTEGER NOT NULL,
folder_id TEXT,
name TEXT,
notes TEXT,
favorite INTEGER NOT NULL DEFAULT 0,
data TEXT NOT NULL,
reprompt INTEGER,
key TEXT,
created_at TEXT NOT NULL,
updated_at TEXT NOT NULL,
deleted_at TEXT,
FOREIGN KEY (user_id) REFERENCES users(id) ON DELETE CASCADE
);
CREATE INDEX IF NOT EXISTS idx_ciphers_user_updated
ON ciphers(user_id, updated_at);
CREATE INDEX IF NOT EXISTS idx_ciphers_user_deleted
ON ciphers(user_id, deleted_at);
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
第1步备份密码. 登录
NodeWarden->导入导出->导出格式:Bitwarden (vault as json)接下来的操作,前提是一定要备份密码库
如没有备份密码库,请不要继续以下操作
第2步删除密码. 登录
cloudflare->存储和数据库->D1 数据库->nodewarden-db->Explore Data-> 删除ciphers↓
第3步重新部署:内容已过时Compute->Workers 和 Pages->nodewarden->部署->部署版本第3步重建密码库: 控制台粘贴以下命令
Beta Was this translation helpful? Give feedback.
All reactions