pub fn build_sqlite_enum_check_clause(
table: &str,
column: &str,
column_type: &ColumnType,
) -> Option<String>Expand description
Generate CHECK constraint expression for SQLite enum column Returns the constraint clause like: CONSTRAINT “chk_table_col” CHECK (col IN (‘val1’, ‘val2’))