A column that stores boolean values. Booleans will be stored as an integer that can either be 0 (false) or 1 (true).
typedef BoolColumn = Column<bool>;