Closed ChrisPortman closed 1 year ago
This change sets the default value of ColumnType.Nullable() to true. If the column is explicitly NOT NULL then it will be set false.
NOT NULL
This is consistent with the SQLite documentation: https://www.sqlitetutorial.net/sqlite-not-null-constraint/
Correct reporting of nullable state for a column that does not specify NULL explicitly
NULL
What did this pull request do?
This change sets the default value of ColumnType.Nullable() to true. If the column is explicitly
NOT NULL
then it will be set false.This is consistent with the SQLite documentation: https://www.sqlitetutorial.net/sqlite-not-null-constraint/
User Case Description
Correct reporting of nullable state for a column that does not specify
NULL
explicitly