Advertisement
Laynester

Untitled

Apr 29th, 2019
2,207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. CREATE TABLE `cms_navigation` (
  2. `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  3. `caption` varchar(30) NOT NULL DEFAULT '',
  4. `url` varchar(30) NOT NULL DEFAULT '',
  5. `parent_id` int(30) NOT NULL DEFAULT '-1',
  6. `order_id` int(30) NOT NULL DEFAULT '0',
  7. `visibility` int(11) NOT NULL DEFAULT '1',
  8. `filename` varchar(30) DEFAULT NULL,
  9. PRIMARY KEY (`id`)
  10. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  11.  
  12.  
  13. INSERT INTO `cms_navigation` (`id`, `caption`, `url`, `parent_id`, `order_id`, `visibility`, `filename`)
  14. VALUES
  15. (1,'{username}','/me',-1,1,1,'me'),
  16. (2,'Community','/community',-1,2,1,'community'),
  17. (3,'Shop','/vip',-1,3,0,'vip'),
  18. (4,'{username}','/me',1,1,1,'me'),
  19. (5,'My Page','/home/{username}',1,2,1,'home/{username}'),
  20. (6,'Settings','/settingspassword',1,3,1,'settingspassword'),
  21. (7,'Log Out','/logout',1,5,0,'logout'),
  22. (8,'Login Attempts','/sessionlog',1,4,1,'sessionlog'),
  23. (9,'Community','/community',2,1,1,'community'),
  24. (10,'Articles','/news',2,2,1,'news'),
  25. (11,'Leaderboards','/stats',2,3,1,'leaderboards'),
  26. (12,'Online Users','/online',2,4,1,'online'),
  27. (13,'Staff','/staff',2,4,1,'staff');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement