Is anyone familiar with this error `The provided v...
# orm-help
m
Is anyone familiar with this error
The provided value for the column is too long for the column's type. Column: (not available)
h
Looks like your database column type size is smaller than your data. If you have
varchar(3)
and you want to save "hello", it will show error like above!
❤️ 1