Do you guys add native types to every field? If no...
# prisma-migrate
d
Do you guys add native types to every field? If not, when do you not add them?
d
if you're fine with the defaults prisma picks you dont need them
On Postgres String maps to text by default. But if you're sure the content is always 10 characters you could use Char(10) as a native type.
d
I see