Changes between Version 25 and Version 26 of RelationalDesign
- Timestamp:
- 07/10/23 09:14:35 (19 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
RelationalDesign
v25 v26 8 8 ---- 9 9 10 * Faculty(**__FacultyID__,City Name*(City),Fname**)11 * Building(**__BuildingID__,City Name*(City),Building_Adress**)12 * City(**__City Name__**)10 * Faculty(**__FacultyID__,CityID*(City),Fname**) 11 * Building(**__BuildingID__,CityID*(City),Building_Adress**) 12 * City(**__CityID__**,CityName) 13 13 * Apartment(**__ApartmentID__, BuildingID*(Building),UserID*(Owner),Aparment_Adress,Size**) 14 14 * ApartmentAgreement(**__AgreementID__, ApartmentID*(Apartment),UserID*(Owner), Date_Signed,Date_Expires,ApartmentRent**) 15 15 * User(**__UserID__,Name,Surname,Password,Phone_Number**,City_of_Residency) 16 * Post(**__PID__, City Name*(City), Num_Roomates, Price, Date_Posted**, Description)16 * Post(**__PID__, CityID*(City), Num_Roomates, Price, Date_Posted**, Description) 17 17 * Apartment_photos(**__PostID*(OwnerPost),Apartment_photos__**) 18 18 * Admin(**__UserID*(User)__, Role**) … … 21 21 * StudentPost(**__PID*(Post)__,UserID*(Student)**) 22 22 * OwnerPost(**__PID*(Post)__, ApartmentID*(Apartment),UserID(Owner)**) 23 * Moderates_Posts_For(**__City Name*(City),UserID*(Admin)__**)23 * Moderates_Posts_For(**__CityID*(City),UserID*(Admin)__**) 24 24 * Student_Signs(**__UserID*(Student),AgreementID*(Agreement)__**) 25 25