Skip to content

Instantly share code, notes, and snippets.

@Lucbm99
Created May 26, 2021 01:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Lucbm99/f4a89522079b38aa0797e6c096e868a8 to your computer and use it in GitHub Desktop.
Save Lucbm99/f4a89522079b38aa0797e6c096e868a8 to your computer and use it in GitHub Desktop.
create table DELECAO_PRODUTOS(
idProdutos_Servicos int auto_increment not null,
nome varchar(30),
descricao varchar(30),
valor decimal(10,2),
fornecedor varchar(30),
tipo varchar(45),
preco_desconto decimal(10,2) null,
deletedAt datetime,
primary key (idProdutos_Servicos)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment