🚀 Initial commit: Versão atual do TrackSteel APP

This commit is contained in:
2026-03-18 21:17:53 +00:00
commit bde410c9ad
633 changed files with 108150 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
-- Adicionar campo para indicar se a peça tem componentes
ALTER TABLE public.pecas ADD COLUMN tem_componentes BOOLEAN DEFAULT FALSE;
-- Criar índice para melhor performance nas consultas
CREATE INDEX idx_pecas_tem_componentes ON public.pecas(tem_componentes);