Não consigo identificar o motivo para reclamar com a mensagem do console.log 'atendimento existente' O código aplicado:
class Tabelas {
init(conexao){
this.conexao = conexao
this.criarAtendimentos()
}
// Criando tabela e definindo o limite de text'varchar', e gerando id a cada novo atendiemnto 'AUTO_INCREMENT'
criarAtendimentos() {
const sql = 'CREATE TABLE Atendimentos (id int NOT NULL AUTO_INCREMENT, cliente varchar(50) NOT NULL, pet varchar(20), servico varchar(20) NOT NULL, status varchar(20) NOT NULL, observacoes text, PRIMARY KEY(id))'
this.conexao.query(sql, erro => {
if(erro) {
console.log(erro)
} else {
console.log('Tabela Atendimentos criada com sucesso')
}
})
}
}
module.exports = new Tabelas