From d475a5ae4748e7c90f6f3620dc01555989937c2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Fra=C3=9F?= Date: Fri, 26 Apr 2024 11:01:38 +0200 Subject: [PATCH] [mod] r1:add sessions table --- source/structure/r1.sindri.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/source/structure/r1.sindri.json b/source/structure/r1.sindri.json index 84d5d69..5d338e8 100644 --- a/source/structure/r1.sindri.json +++ b/source/structure/r1.sindri.json @@ -1,5 +1,28 @@ { "domains": [ + { + "name": "sessions", + "data_fields": [ + { + "name": "key", + "type": "string_medium", + "nullable": false + }, + { + "name": "data", + "type": "string_long", + "nullable": false + } + ], + "constraints": [ + { + "kind": "unique", + "parameters": { + "fields": ["key"] + } + } + ] + }, { "name": "members", "key_field": {