CREATE TABLE IF NOT EXISTS `followers` ( `user_id` int(10) unsigned DEFAULT NULL, `acct` char(64) NOT NULL, `ts` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, UNIQUE KEY `acct` (`acct`), foreign key (user_id) references users(id) );