BoolColumn typedef

BoolColumn = Column<bool>

A column that stores boolean values. Booleans will be stored as an integer that can either be 0 (false) or 1 (true).

Implementation

typedef BoolColumn = Column<bool>;