feat: add MANZANA migration job and update related processing logic

This commit is contained in:
2026-04-08 10:16:27 -05:00
parent 3765e8adb3
commit 75b04d4b2e
5 changed files with 19 additions and 18 deletions

View File

@@ -14,8 +14,6 @@ import (
const (
totalRows int = 1_000_000
chunkSize int = 50_000
schema string = "Red"
table string = "PUERTO"
queueSize int = 4
)
@@ -39,7 +37,7 @@ func main() {
var wgSeed sync.WaitGroup
wgSeed.Go(func() {
seedPuertos(ctx, db)
seedManzanas(ctx, db)
})
wgSeed.Wait()