From b182c58f3741f225da1422ddd51be252a233d82c Mon Sep 17 00:00:00 2001 From: Victor Date: Fri, 11 Mar 2022 11:47:10 -0300 Subject: [PATCH] Update cest.sql Coluna descricao_tbc com tamanho limitado --- exemplos/sql/cest.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exemplos/sql/cest.sql b/exemplos/sql/cest.sql index f6e255482..9f1a3ea20 100644 --- a/exemplos/sql/cest.sql +++ b/exemplos/sql/cest.sql @@ -7,7 +7,7 @@ CREATE TABLE `tabelacest` ( `codigo_tbc` int(11) NOT NULL auto_increment COMMENT 'Chave Primaria Auto-Incremento', `legal_tbc` int(11) NOT NULL COMMENT 'Código do CEST', `ncm_tbc` int(11) NOT NULL COMMENT 'Código do NCM', - `descricao_tbc` varchar(300) NOT NULL COMMENT 'Descrição do CEST', + `descricao_tbc` text NOT NULL COMMENT 'Descrição do CEST', PRIMARY KEY (`codigo_tbc`), KEY `ncm_tbc` (`ncm_tbc`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=971 ; @@ -985,4 +985,4 @@ INSERT INTO `tabelacest` VALUES (966, 2803200, 9615, 'Pentes, travessas para cab INSERT INTO `tabelacest` VALUES (967, 2803300, 39241000, 'Mamadeiras'); INSERT INTO `tabelacest` VALUES (968, 2803300, 39249000, 'Mamadeiras'); INSERT INTO `tabelacest` VALUES (969, 2803300, 40149090, 'Mamadeiras'); -INSERT INTO `tabelacest` VALUES (970, 2803400, 40149090, 'Chupetas e bicos para mamadeiras e para chupetas'); \ No newline at end of file +INSERT INTO `tabelacest` VALUES (970, 2803400, 40149090, 'Chupetas e bicos para mamadeiras e para chupetas');