- Timestamp:
- 03/01/2018 09:13:24 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/api.wordpress.org/public_html/events/1.0/index.php
r6815 r6816 1026 1026 1027 1027 main(); 1028 1029 /*1030 CREATE TABLE `wporg_events` (1031 `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,1032 `type` varchar(32) NOT NULL DEFAULT '',1033 `source_id` varchar(32) NOT NULL DEFAULT '',1034 `title` varchar(255) NOT NULL DEFAULT '',1035 `url` text NOT NULL,1036 `description` longtext,1037 `attendees` int(11) unsigned DEFAULT NULL,1038 `meetup` varchar(255) DEFAULT NULL,1039 `meetup_url` text,1040 `date_utc` datetime NOT NULL,1041 `date_utc_offset` varchar(32) DEFAULT NULL,1042 `end_date` datetime NOT NULL,1043 `location` text,1044 `country` varchar(64) DEFAULT NULL,1045 `latitude` double NOT NULL,1046 `longitude` double NOT NULL,1047 PRIMARY KEY (`id`),1048 UNIQUE KEY `event_source_id` (`type`,`source_id`),1049 KEY `date` (`date_utc`),1050 KEY `country` (`country`),1051 KEY `lat_lon` (`latitude`,`longitude`)1052 ) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=latin1;1053 */
Note: See TracChangeset
for help on using the changeset viewer.