retro ripper database dosen't have it aswell, still looking for it atm if anyone has it?try looking through these it might have it
You must be registered for see links
wish i knew how the query's worked.Make one
Sent from my GT-I9505 using Tapatalk
i'm a noob at making sutff like this.You don't need a query to make a table lol
DROP TABLE IF EXISTS `apps`;
CREATE TABLE `apps` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL DEFAULT '0',
`content` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`,`user_id`),
UNIQUE KEY `user_id` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
thanks man working!Code:DROP TABLE IF EXISTS `apps`; CREATE TABLE `apps` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL DEFAULT '0', `content` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`,`user_id`), UNIQUE KEY `user_id` (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
You'll need to edit the columns to add whatever you require.