I'm trying to set a default value for a decimal column. But I still received a "Not null violation error".
What I have tried:
- default('0')
- default(0)
- default('0.00') (solution from another stack overflow question)
- default('00000000000000000.00')
- default(0.00)
None of what I've tried works. Does anyone know how to fix this?

