SQL/Blob: Add support for blob storage to SQL backend (#98192)

This commit is contained in:
Ryan McKinley
2025-01-08 23:08:10 +03:00
committed by GitHub
parent 3e68731600
commit 429da7fd68
18 changed files with 478 additions and 13 deletions

View File

@ -74,7 +74,7 @@ func (db *PostgresDialect) SQLType(c *Column) string {
case DB_NVarchar:
res = DB_Varchar
case DB_Uuid:
res = DB_Uuid
return DB_Uuid // do not add the length options
case DB_Blob, DB_TinyBlob, DB_MediumBlob, DB_LongBlob:
return DB_Bytea
case DB_Double: