· 7 years ago · Oct 09, 2018, 09:16 PM
1CREATE TABLE IF NOT EXISTS `friend_stream` (
2 `id` int(11) NOT NULL AUTO_INCREMENT,
3 `user` text NOT NULL,
4 `text` text NOT NULL,
5 `type` int(11) NOT NULL,
6 `likes` int(11) NOT NULL,
7 `time` text NOT NULL,
8 `user_id` int(11) NOT NULL,
9 PRIMARY KEY (`id`)
10) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=67 ;