Advertisement
Guest User

Untitled

a guest
May 29th, 2015
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. CREATE TABLE `comment` (
  2. `commentID` int(11) NOT NULL,
  3. `commentAuthorID` int(11) NOT NULL,
  4. `commentContent` int(11) NOT NULL,
  5. `commentDate` int(11) NOT NULL,
  6. `commentTime` int(11) NOT NULL,
  7. `commentPostID` int(11) NOT NULL,
  8. `commentUpVote` int(11) NOT NULL,
  9. `commentDownVote` int(11) NOT NULL,
  10. PRIMARY KEY (`commentID`)
  11. )
  12. CREATE TABLE `category` (
  13. `categoryID` int(11) NOT NULL DEFAULT '0',
  14. `categoryContent` varchar(100) DEFAULT NULL,
  15. `categoryCount` int(11) DEFAULT NULL,
  16. PRIMARY KEY (`categoryID`)
  17. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement