Lines 2838-2844
CREATE TABLE ratings (
Link Here
|
2838 |
DROP TABLE IF EXISTS quotes; |
2838 |
DROP TABLE IF EXISTS quotes; |
2839 |
CREATE TABLE `quotes` ( |
2839 |
CREATE TABLE `quotes` ( |
2840 |
`id` int(11) NOT NULL AUTO_INCREMENT, |
2840 |
`id` int(11) NOT NULL AUTO_INCREMENT, |
2841 |
`source` varchar(45) DEFAULT NULL, |
2841 |
`source` text DEFAULT NULL, |
2842 |
`text` mediumtext NOT NULL, |
2842 |
`text` mediumtext NOT NULL, |
2843 |
`timestamp` datetime NOT NULL, |
2843 |
`timestamp` datetime NOT NULL, |
2844 |
PRIMARY KEY (`id`) |
2844 |
PRIMARY KEY (`id`) |