This commit is contained in:
Benjamin Toby
2025-07-28 07:23:45 +01:00
parent a429436939
commit 8ac8b8eb51
49 changed files with 475 additions and 177 deletions
+8
View File
@@ -56,6 +56,14 @@ declare const DataTypes: readonly [{
readonly name: "LONGTEXT";
readonly value: "0-255";
readonly description: "LONGTEXT is just text with max length 4,294,967,295";
}, {
readonly title: "OPTIONS";
readonly name: "ENUM";
readonly description: "String options to be selected from";
}, {
readonly title: "BOOLEAN";
readonly name: "BOOLEAN";
readonly description: "True or False. Represented in the database as 0 or 1";
}, {
readonly title: "DECIMAL";
readonly name: "DECIMAL";
+10
View File
@@ -69,6 +69,16 @@ const DataTypes = [
value: "0-255",
description: "LONGTEXT is just text with max length 4,294,967,295",
},
{
title: "OPTIONS",
name: "ENUM",
description: "String options to be selected from",
},
{
title: "BOOLEAN",
name: "BOOLEAN",
description: "True or False. Represented in the database as 0 or 1",
},
{
title: "DECIMAL",
name: "DECIMAL",
+10
View File
@@ -68,6 +68,16 @@ const DataTypes = [
value: "0-255",
description: "LONGTEXT is just text with max length 4,294,967,295",
},
{
title: "OPTIONS",
name: "ENUM",
description: "String options to be selected from",
},
{
title: "BOOLEAN",
name: "BOOLEAN",
description: "True or False. Represented in the database as 0 or 1",
},
{
title: "DECIMAL",
name: "DECIMAL",