CREATE TABLE vn.bankEntityConfig ( id INT auto_increment NULL, bicLength TINYINT DEFAULT 11 NULL COMMENT 'TamaƱo del campo bic', CONSTRAINT bankEntityConfig_PK PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; INSERT INTO vn.bankEntityConfig (id, bicLength) VALUES(1, 11);