--
-- Create column "tipoCodigo" on table "dbo.invArticulosAlt"
--
ALTER TABLE dbo.invArticulosAlt
  ADD tipoCodigo int NOT NULL CONSTRAINT DF_invArticulosAlt_tipoCodigo DEFAULT (0)
GO
IF @@ERROR<>0 OR @@TRANCOUNT=0 BEGIN IF @@TRANCOUNT>0 ROLLBACK SET NOEXEC ON END
GO

--
-- Create column "rutCte" on table "dbo.invArticulosAlt"
--
ALTER TABLE dbo.invArticulosAlt
  ADD rutCte int NOT NULL CONSTRAINT DF_invArticulosAlt_rutCte DEFAULT (0)
GO
IF @@ERROR<>0 OR @@TRANCOUNT=0 BEGIN IF @@TRANCOUNT>0 ROLLBACK SET NOEXEC ON END
GO

--
-- Create column "dv" on table "dbo.invArticulosAlt"
--
ALTER TABLE dbo.invArticulosAlt
  ADD dv char(1) NOT NULL CONSTRAINT DF_invArticulosAlt_dv DEFAULT (0)
GO
IF @@ERROR<>0 OR @@TRANCOUNT=0 BEGIN IF @@TRANCOUNT>0 ROLLBACK SET NOEXEC ON END
GO