-- V024_ROLLBACK.sql -- PRC-001: Reversa de V024__reseed_global_with_zero_price.sql. -- -- Restaura las 4 filas globales de seed a PricePerUnit = 1.0000 (valor original de V022). -- Solo ejecutar si V024 fue aplicado y se desea volver al estado previo. -- -- Run on: SIGCM2 (dev), SIGCM2_Test_App, SIGCM2_Test_Api. SET QUOTED_IDENTIFIER ON; SET ANSI_NULLS ON; SET NOCOUNT ON; GO UPDATE dbo.ChargeableCharConfig SET PricePerUnit = CAST(1.0000 AS DECIMAL(18,4)) WHERE ProductTypeId IS NULL AND Symbol IN (N'$', N'%', N'!', N'¡') AND ValidTo IS NULL; PRINT 'V024 ROLLBACK complete — global ChargeableCharConfig prices restored to 1.0000.'; PRINT 'Rows updated: ' + CAST(@@ROWCOUNT AS NVARCHAR(10)); GO