-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.sql
More file actions
19 lines (19 loc) · 688 Bytes
/
Copy pathdb.sql
File metadata and controls
19 lines (19 loc) · 688 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
CREATE TABLE `venues` (
`id` varchar(255) NOT NULL DEFAULT '',
`name` varchar(255) DEFAULT NULL,
`usersCount` int(11) DEFAULT NULL,
`checkinsCount` int(11) DEFAULT NULL,
`lat` double DEFAULT NULL,
`lng` double DEFAULT NULL,
`address` varchar(255) DEFAULT NULL,
`city` varchar(255) DEFAULT NULL,
`state` varchar(255) DEFAULT NULL,
`postalCode` int(11) DEFAULT NULL,
`mayorId` int(11) DEFAULT NULL,
`mayorCount` int(11) DEFAULT NULL,
`m_lastCheckin` datetime DEFAULT NULL,
`m_checkinPriority` int(11) DEFAULT '999',
`m_lastVenueDetails` datetime DEFAULT NULL,
`m_lastSearch` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;