chore(database): mediumtext type support (#4697)

This commit is contained in:
ChengLei Shao 2024-06-18 16:03:35 +08:00 committed by GitHub
parent 06e166f8da
commit f61b56fe4f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -55,7 +55,9 @@ const mysql = {
varchar: ['string', 'uuid', 'nanoid'],
date: 'date',
time: 'time',
tinytext: 'text',
text: 'text',
mediumtext: 'text',
longtext: 'text',
int: ['integer', 'sort'],
'int unsigned': ['integer', 'sort'],