Explorar o código

增加Oracle数据库类型,解决Oracle数据库下创建datetime类型字段报异常的问题。

Signed-off-by: 清子 <261617183@qq.com>
清子 %!s(int64=3) %!d(string=hai) anos
pai
achega
69a949b4a9
Modificáronse 1 ficheiros con 15 adicións e 0 borrados
  1. 15 0
      Web/src/views/system/database/database.ts

+ 15 - 0
Web/src/views/system/database/database.ts

@@ -89,4 +89,19 @@ export const dataTypeList = [
 		hasLength: false,
 		hasDecimalDigits: false,
 	},
+	{
+		value: 'date',
+		hasLength: false,
+		hasDecimalDigits: false,
+	},
+    {
+		value: 'blob',
+		hasLength: false,
+		hasDecimalDigits: false,
+	},
+    {
+		value: 'clob',
+		hasLength: false,
+		hasDecimalDigits: false,
+	},
 ];