This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.
BEGIN TRANSACTION
SET QUOTED_IDENTIFIER ON
SET ARITHABORT ON
SET NUMERIC_ROUNDABORT OFF
SET CONCAT_NULL_YIELDS_NULL ON
SET ANSI_NULLS ON
SET ANSI_PADDING ON
SET ANSI_WARNINGS ON
COMMIT
BEGIN TRANSACTION
GO
ALTER TABLE dbo.ch_fee ADD
ISVOU bit default 0,
VOUCHERNO nchar(10) NULL,
ACCDATE varchar(7) NULL,
BXGID varchar(50) null
ALTER TABLE dbo.ch_fee SET (LOCK_ESCALATION = TABLE)
update ch_fee set ISVOU=0