Data-loss when pushing changes for geometry

As title mentioned. I'm getting "You're about to change location column type from geometry(Point) to geometry(point) with 8 items"

This is my table:

export const informationsTable = schema.table(
'informations',
{
id: text().$defaultFn(tid).primaryKey(),
name: text().notNull(),
location: geometry('location', {
type: 'point',
mode: 'tuple',
srid: 4326
}).notNull(),
}
)

"drizzle-orm": "^0.37.0"
"drizzle-kit": "^0.29.0"

Is there a way to temporary fix this issue?
Was this page helpful?