Data type check

In the DBML definitions the data type is NVARCHAR, when export to Postgres this type of data doesn’t exist. But the script is generate with this.
The export function can’t validate the data types?

We don’t validate the data types at the moment.

We designed the column types as dynamic types. The column type supports all data types as long as it is a single word (remove all spaces in the data type). Example, JSON, JSONB, decimal(1,2), etc.

However, we may consider this feature in the future.

Thanks.