File: parseCreateTable17.in

package info (click to toggle)
phpmyadmin-sql-parser 5.10.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 17,244 kB
  • sloc: php: 52,958; makefile: 13; sh: 8
file content (8 lines) | stat: -rw-r--r-- 323 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
CREATE TABLE `autos8` (
    `auto_id` int(10) UNSIGNED NOT NULL UNIQUE KEY,
    `make` varchar(128) DEFAULT NULL,
    `year` int(11) DEFAULT NULL,
    `mileage` int(11) DEFAULT NULL,
    `city` point NOT NULL,
    SPATIAL INDEX `city_index` (`city`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_general_ci;