We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3189a73 commit ab5d53aCopy full SHA for ab5d53a
rust/impls/src/postgres/sql/v0_create_vss_db.sql
@@ -0,0 +1,10 @@
1
+CREATE TABLE vss_db (
2
+ user_token character varying(120) NOT NULL CHECK (user_token <> ''),
3
+ store_id character varying(120) NOT NULL CHECK (store_id <> ''),
4
+ key character varying(600) NOT NULL,
5
+ value bytea NULL,
6
+ version bigint NOT NULL,
7
+ created_at TIMESTAMP WITH TIME ZONE,
8
+ last_updated_at TIMESTAMP WITH TIME ZONE,
9
+ PRIMARY KEY (user_token, store_id, key)
10
+);
0 commit comments