If you are doing this DB first, simply change the TINYINT(1) types to BIT(1), assuming you really want a Boolean. You may have to update the default values also (to bit syntax such as b'0'). EF will still translate these to Boolean values in your entities.