forked from rafaelgou/fipe-crawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
veiculo.sql
29 lines (27 loc) · 925 Bytes
/
veiculo.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
DROP DATABASE IF EXISTS `fipe`;
CREATE DATABASE IF NOT EXISTS `fipe` CHARACTER SET utf8 COLLATE utf8_general_ci;
USE `fipe`;
SET NAMES utf8;
SET time_zone = '+00:00';
SET foreign_key_checks = 0;
SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
DROP TABLE IF EXISTS `veiculo`;
CREATE TABLE `veiculo` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`fipe_cod` varchar(10) DEFAULT NULL,
`tabela_id` int(11) NOT NULL,
`anoref` smallint(4) NOT NULL,
`mesref` smallint(2) NOT NULL,
`tipo` tinyint(1) NOT NULL,
`marca_id` int(11) NOT NULL,
`marca` varchar(50) DEFAULT NULL,
`modelo_id` int(11) NOT NULL,
`modelo` varchar(50) NOT NULL,
`anomod` smallint(4) NOT NULL,
`comb_cod` tinyint(1) NOT NULL,
`comb_sigla` char(1) NOT NULL,
`comb` varchar(10) NOT NULL,
`valor` int(11) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `fipe_cod_anomod_comb_cod` (`fipe_cod`,`anomod`,`comb_cod`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;