if not Exists(SELECT * FROM information_schema.tables where Table_name = 'TafsiliRemind') begin create table TafsiliRemind ( ID int primary key, Taf_ID bigint references Tafsili(ID) not null, FC_ID int references Finance_Cycle(ID) not null, Pro_ID_VahedMali int references OtherProperties(ID) not null, Tarikh int not null, Price decimal(19,4) not null, Dom_ID_Nature int references domain(ID) not null, -- ماهیت Dom_ID_RowType int references domain(ID) not null, -- دستی | سیستم CodeKarbar int references Karbar(ID) not null, TarikhSabt int not null, SaatSabt smallint not null ) end