I know about the boolean column type, but is there a boolean literal in SQLite? In other languages, this might be true
boolean
true
SQLite doesn't have Boolean type, you should use INTEGER with 0 is false and 1 is true