--加领取奖品字段
use MuOnline
go
if not exists (select 1 from syscolumns where name = 'dh400' and id = object_id('Character'))
alter table Character
add dh400 int DEFAULT (0)
if not exists (select 1 from syscolumns where name = 'dhMaster' and id = object_id('T_MasterLevelSystem'))
alter table T_MasterLevelSystem
add dhMaster int DEFAULT (0)
go