Skip to content

Instantly share code, notes, and snippets.

@d6rkaiz
Created March 17, 2011 07:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save d6rkaiz/873974 to your computer and use it in GitHub Desktop.
Save d6rkaiz/873974 to your computer and use it in GitHub Desktop.
SHOW CREATE TABLE location;
| location | CREATE TABLE `location` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`location_name` varchar(255) DEFAULT NULL,
`country_id` int(11) DEFAULT NULL,
`latitude` double NOT NULL DEFAULT '0',
`longitude` double NOT NULL DEFAULT '0',
`location_visible` tinyint(4) NOT NULL DEFAULT '1',
`location_date` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3877 DEFAULT CHARSET=utf8 |
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment