'Insert into table results in "column cannot be null" but said column does not exist

I have a SQL table that when I try to insert a row into it I get

Error Code: 1048. Column 'chave_integracao_grupo' cannot be null

The table does not have a column named "chave_integracao_grupo". I tried inserting data into said column but got the standard column does not exist error. I also checked and All the NOT NULL columns are receiving a default expressions.

Edit:

CREATE TABLE `empresas` (
   `id` int(11) NOT NULL AUTO_INCREMENT,
   `id_grupo` int(11) NOT NULL DEFAULT '1',
   `cnpj` varchar(18) DEFAULT NULL,
   `id_estado` int(11) DEFAULT NULL,
   `id_cidade` int(11) DEFAULT NULL,
   `id_funcionalidade` int(11) NOT NULL DEFAULT '3',
   `inscricao_estadual` varchar(15) DEFAULT NULL,
   `razao_social` varchar(100) NOT NULL,
   `nome_fantasia` varchar(50) NOT NULL,
   `telefone` varchar(20) DEFAULT NULL,
   `cep` varchar(12) DEFAULT NULL,
   `endereco` varchar(50) DEFAULT NULL,
   `bairro` varchar(50) DEFAULT NULL,
   `numero` varchar(10) DEFAULT NULL,
   `status` tinyint(4) NOT NULL DEFAULT '1',
   `id_integracao_gerencial` int(11) DEFAULT NULL,
   PRIMARY KEY (`id`),
   KEY `FK_EMPRESAS_CIDADES` (`id_cidade`),
   KEY `FK_EMPRESAS_ESTADOS` (`id_estado`),
   KEY `FK_EMPRESAS_EMPRESASMATRIZ` (`id_grupo`),
   KEY `FK_EMPRESAS_FUNCIONALIDADES` (`id_funcionalidade`),
   CONSTRAINT `FK_EMPRESAS_CIDADES` FOREIGN KEY (`id_cidade`) REFERENCES `cidades` (`id`),
   CONSTRAINT `FK_EMPRESAS_EMPRESASMATRIZ` FOREIGN KEY (`id_grupo`) REFERENCES `emp_grupo` (`id`),
   CONSTRAINT `FK_EMPRESAS_ESTADOS` FOREIGN KEY (`id_estado`) REFERENCES `estados` (`id`),
   CONSTRAINT `FK_EMPRESAS_FUNCIONALIDADES` FOREIGN KEY (`id_funcionalidade`) REFERENCES `emp_funcionalidades` (`id`)
 ) ENGINE=InnoDB AUTO_INCREMENT=54 DEFAULT CHARSET=utf8


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source