Typed Column Defaults
DrawSQL now differentiates whether a column default is a SQL function, numeric value, or string literal—and infers & exports them accordingly. Enter now() and it exports as DEFAULT now() (unquoted). Enter 123 on a numeric column and it exports as DEFAULT 123. Enter pending and it exports as DEFAULT 'pending' (quoted).
Depending on the DBMS: PostgreSQL accepts any function call, while MySQL and SQL Server validate against known built-ins. Override by wrapping in single quotes: e.g. 'now()' forces string treatment.
🌟 Improvements and Fixes
Fixed sticky notes with blank lines in content causing a render error