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.
5 lines
170 B
5 lines
170 B
7 months ago
|
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
|
||
|
|