diff options
author | Daniel García <[email protected]> | 2021-03-15 16:42:20 +0100 |
---|---|---|
committer | Daniel García <[email protected]> | 2021-03-15 16:42:20 +0100 |
commit | 95e24ffc51db2f6834142ec86568c2d244562006 (patch) | |
tree | c3468a4291bf2e9f61c7c544fc68aae0558de151 /src/db/schemas | |
parent | 7436b454db5734a225afa88db96fcb62b187bb4d (diff) | |
download | vaultwarden-95e24ffc51db2f6834142ec86568c2d244562006.tar.gz vaultwarden-95e24ffc51db2f6834142ec86568c2d244562006.zip |
rename send key -> akey
Diffstat (limited to 'src/db/schemas')
-rw-r--r-- | src/db/schemas/mysql/schema.rs | 2 | ||||
-rw-r--r-- | src/db/schemas/postgresql/schema.rs | 2 | ||||
-rw-r--r-- | src/db/schemas/sqlite/schema.rs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/db/schemas/mysql/schema.rs b/src/db/schemas/mysql/schema.rs index 7f1f4805..346b2959 100644 --- a/src/db/schemas/mysql/schema.rs +++ b/src/db/schemas/mysql/schema.rs @@ -111,7 +111,7 @@ table! { notes -> Nullable<Text>, atype -> Integer, data -> Text, - key -> Text, + akey -> Text, password_hash -> Nullable<Binary>, password_salt -> Nullable<Binary>, password_iter -> Nullable<Integer>, diff --git a/src/db/schemas/postgresql/schema.rs b/src/db/schemas/postgresql/schema.rs index 3eb94518..f8e1e9fe 100644 --- a/src/db/schemas/postgresql/schema.rs +++ b/src/db/schemas/postgresql/schema.rs @@ -111,7 +111,7 @@ table! { notes -> Nullable<Text>, atype -> Integer, data -> Text, - key -> Text, + akey -> Text, password_hash -> Nullable<Binary>, password_salt -> Nullable<Binary>, password_iter -> Nullable<Integer>, diff --git a/src/db/schemas/sqlite/schema.rs b/src/db/schemas/sqlite/schema.rs index 3eb94518..f8e1e9fe 100644 --- a/src/db/schemas/sqlite/schema.rs +++ b/src/db/schemas/sqlite/schema.rs @@ -111,7 +111,7 @@ table! { notes -> Nullable<Text>, atype -> Integer, data -> Text, - key -> Text, + akey -> Text, password_hash -> Nullable<Binary>, password_salt -> Nullable<Binary>, password_iter -> Nullable<Integer>, |