NAPPDesafio/api/models/products/schema.sql
2024-07-21 00:15:14 -03:00

15 lines
378 B
SQL

CREATE TABLE products (
product UUID NOT NULL,
created_by UUID NOT NULL,
created_at TIMESTAMP NOT NULL,
updated_by UUID,
updated_at TIMESTAMP,
nome text NOT NULL,
codigo text NOT NULL,
estoque_total BIGINT NOT NULL,
estoque_corte BIGINT NOT NULL,
estoque_disponivel BIGINT NOT NULL,
preco_de NUMERIC NOT NULL,
preco_por NUMERIC NOT NULL
)