commit 3f416278bb07101a3012499c698a91b5779bfa07
| author | 斟酌 鵬兄 <tgckpg@gmail.com> |
| date | 2022-08-13T16:52:26Z |
| subject | key is not unique |
commit 3f416278bb07101a3012499c698a91b5779bfa07
Author: 斟酌 鵬兄 <tgckpg@gmail.com>
Date: 2022-08-13T16:52:26Z
key is not unique
---
bash/bashrc/sources/16_keystore | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bash/bashrc/sources/16_keystore b/bash/bashrc/sources/16_keystore
index c21a293..92e6eb6 100644
--- a/bash/bashrc/sources/16_keystore
+++ b/bash/bashrc/sources/16_keystore
@@ -58,7 +58,7 @@ function kstore-secret {
function kstore-init {
cat <<___SQL___ | $_SQLITE "$_AUTH_DB"
CREATE TABLE IF NOT EXISTS store (
- key TEXT UNIQUE NOT NULL
+ key TEXT NOT NULL
, prop TEXT NOT NULL
, data TEXT
, PRIMARY KEY( key ASC, prop ASC )