| 12345678910111213141516171819202122232425262728293031323334 |
- -- Settings and version data
- INSERT INTO `settings` VALUES
- ('comments','1',0,NOW()),
- ('festivals','1',0,NOW()),
- ('photos','1',0,NOW()),
- ('version','1',0,NOW());
- INSERT INTO version VALUES
- ('activity', 1),
- ('activity_comment', 1),
- ('activity_image', 1),
- ('activity_itinerary', 1),
- ('activity_tag', 1),
- ('album', 1),
- ('festival', 1),
- ('festival_day', 1),
- ('festival_event_city', 1),
- ('festival_event_gm', 1),
- ('festival_event_image', 1),
- ('festival_offer', 1),
- ('people', 1),
- ('photo', 1),
- ('photo_album', 1),
- ('photo_comment', 1),
- ('place', 1),
- ('post', 1),
- ('post_comment', 1),
- ('post_image', 1),
- ('post_tag', 1),
- ('route', 1),
- ('route_point', 1),
- ('settings', 1),
- ('sponsor', 1);
|