Changes between Version 13 and Version 14 of iPeerDatabaseSchema
- Timestamp:
- 2010-10-15T16:23:45Z (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
iPeerDatabaseSchema
v13 v14 3 3 == courses == 4 4 Contains all the courses in the iPeer instance. 5 ||__Column__||__Type__||__Description__||__Foreign Key in...-_||5 ||__Column__||__Type__||__Description__||__Foreign Key to table...__|| 6 6 ||'''id'''||integer||primary key 7 7 ||'''course'''||string||the course number, ex: APSC 123 … … 11 11 ||'''password'''||string||an MD5 hash of the user password. 12 12 ||'''record_status'''||enum(A,I)||either 'A' or 'I', representing active or inactive. Not always checked by code. 13 ||'''creator_id'''||integer||the ID of the user who created this course.|| users13 ||'''creator_id'''||integer||the ID of the user who created this course.||''users'' 14 14 ||'''created'''||date||a date entry for this entry's creation. 15 ||'''updater_id'''||integer||the last user's ID who changed this record.|| users15 ||'''updater_id'''||integer||the last user's ID who changed this record.||''users'' 16 16 ||'''instructor_id'''||integer||unused, as far as I can tell. The course-instructor is a many-to-many relationship is handled by the ''user_courses'' table. 17 17 == evaluation_mixevals ==