added new table costo

This commit is contained in:
2026-02-23 14:37:55 -06:00
parent 8c69da9999
commit 59d3ec1490
9 changed files with 108 additions and 1 deletions
+5 -1
View File
@@ -43,6 +43,8 @@ import { BitacoraModule } from './bitacora/bitacora.module';
import { Bitacora } from './bitacora/entities/bitacora.entity';
import { MensajeModule } from './mensaje/mensaje.module';
import { Mensaje } from './mensaje/entities/mensaje.entity';
import { CostoModule } from './costo/costo.module';
import { Costo } from './costo/entities/costo.entity';
@Module({
imports: [
@@ -79,7 +81,8 @@ import { Mensaje } from './mensaje/entities/mensaje.entity';
ProgramaEquipo,
BitacoraMesa,
Bitacora,
Mensaje
Mensaje,
Costo,
],
synchronize: false, //Never change to true in production!
}),
@@ -103,6 +106,7 @@ import { Mensaje } from './mensaje/entities/mensaje.entity';
BitacoraMesaModule,
BitacoraModule,
MensajeModule,
CostoModule,
],
controllers: [AppController],
providers: [AppService],