You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
if not exists (select name from syscolumns where name='isforbidden' and id=object_id('t_user'))
|
|
alter table t_user add isforbidden varchar(1) default '0' not null
|
|
go
|
|
|