You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recent versions of SQLite have the option to set a table to STRICT, which makes SQLite:
require each column of the table have an explicit type
enforce types, rather than accepting any type during row insertion/updates
Currently createtable!() does not include the option to set STRICT as true. This issue is a feature request to add this as a boolean flag to this method.
The text was updated successfully, but these errors were encountered:
Recent versions of SQLite have the option to set a table to STRICT, which makes SQLite:
Currently
createtable!()
does not include the option to set STRICT as true. This issue is a feature request to add this as a boolean flag to this method.The text was updated successfully, but these errors were encountered: