Currently, SQLite has a very trivial type mapping so string properties are always mapped to TEXT columns. We could preserve the HasMaxLength() metadata in the database schema if we wanted. The column would map to something like TEXT(30). SQLite effectively ignores any length/precision/scale values, but we could still honor their semantics during reverse engineer.
Currently, SQLite has a very trivial type mapping so
stringproperties are always mapped toTEXTcolumns. We could preserve theHasMaxLength()metadata in the database schema if we wanted. The column would map to something likeTEXT(30). SQLite effectively ignores any length/precision/scale values, but we could still honor their semantics during reverse engineer.