if not Exists(SELECT * FROM information_schema.tables where Table_name = 'KarbarProperty') begin create table KarbarProperty ( ID int primary key, Kar_ID int references karbar(ID) not null, Dom_ID_RowType int references domain(ID) not null, Value nvarchar(max) null, Kar_ID_Creator int references karbar(ID) not null, TarikhSabt int not null, SaatSabt int not null ) end