From 8a56ab2bbfcafd113bb02d3a9d22611b866e981f Mon Sep 17 00:00:00 2001 From: OpenXE <> Date: Fri, 1 Nov 2024 10:02:28 +0100 Subject: [PATCH] table smarty_templates name unique --- upgrade/data/db_schema.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/upgrade/data/db_schema.json b/upgrade/data/db_schema.json index f5d12bb7..5e397007 100644 --- a/upgrade/data/db_schema.json +++ b/upgrade/data/db_schema.json @@ -119070,6 +119070,17 @@ "Privileges": "select,insert,update,references", "Comment": "" }, + { + "Field": "name", + "Type": "varchar(30)", + "Collation": "utf8mb3_general_ci", + "Null": "NO", + "Key": "", + "Default": null, + "Extra": "", + "Privileges": "select,insert,update,references", + "Comment": "" + }, { "Field": "template", "Type": "text", @@ -119090,6 +119101,14 @@ "id" ], "Non_unique": "" + }, + { + "Key_name": "name", + "Index_type": "BTREE", + "columns": [ + "name" + ], + "Non_unique": "UNIQUE" } ] }