- 1
- 2
- 3
- 4
- 5
CREATE TABLE IF NOT EXISTS `participant` (
...
`subscribed` enum('yes','no') COLLATE utf8_unicode_ci NOT NULL COMMENT 'whether the participant is currently subscribed',
`posted` enum('yes','no') COLLATE utf8_unicode_ci NOT NULL COMMENT 'whether the participant has posted a message to this stream'
)
lolwhat?