if not Exists(SELECT * FROM information_schema.tables where Table_name = 'PeopleProperty')
begin
	Create table PeopleProperty
	(
		ID	int primary key,
		Peo_ID	int References People(ID) not null,
		Dom_ID_RowType	int References Domain(ID) not null,
		CSD_ID int references ControlStructureDetail(ID) not null,
		Value	nvarchar(1000),
		TarikhSabt	int not null,
		SaatSabt	int not null
	)
end