Escrevi o código mas da erro na query. Alguem sabe o q pode ser?
Classe:
class Tabelas {
init(conexao) {
console.log('tabelas')
this.criarAtendimento()
}
criarAtendimento(){
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