03_SETTINGS.sql 741 B

12345678910111213141516171819202122232425262728293031323334
  1. -- Settings and version data
  2. INSERT INTO `settings` VALUES
  3. ('comments','1',0,NOW()),
  4. ('festivals','1',0,NOW()),
  5. ('photos','1',0,NOW()),
  6. ('version','1',0,NOW());
  7. INSERT INTO version VALUES
  8. ('activity', 1),
  9. ('activity_comment', 1),
  10. ('activity_image', 1),
  11. ('activity_itinerary', 1),
  12. ('activity_tag', 1),
  13. ('album', 1),
  14. ('festival', 1),
  15. ('festival_day', 1),
  16. ('festival_event_city', 1),
  17. ('festival_event_gm', 1),
  18. ('festival_event_image', 1),
  19. ('festival_offer', 1),
  20. ('people', 1),
  21. ('photo', 1),
  22. ('photo_album', 1),
  23. ('photo_comment', 1),
  24. ('place', 1),
  25. ('post', 1),
  26. ('post_comment', 1),
  27. ('post_image', 1),
  28. ('post_tag', 1),
  29. ('route', 1),
  30. ('route_point', 1),
  31. ('settings', 1),
  32. ('sponsor', 1);