Changes between Version 14 and Version 15 of iPeerDatabaseSchema
- Timestamp:
- 2010-10-15T16:29:30Z (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
iPeerDatabaseSchema
v14 v15 4 4 Contains all the courses in the iPeer instance. 5 5 ||__Column__||__Type__||__Description__||__Foreign Key to table...__|| 6 ||'''id'''||integer|| primary key6 ||'''id'''||integer||PrimaryKey 7 7 ||'''course'''||string||the course number, ex: APSC 123 8 8 ||'''title'''||string||a very short course description, ex: Academic Writing … … 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 == 18 A student's evaluations are put here, for the mixed evaluation type. Each evaluator-evaluate pair is recorded here. 19 ||__Column__||__Type__||__Description__||__Foreign Key to table...__|| 20 ||'''id'''||integer||PrimaryKey 21 ||'''evaluator'''||integer||The user submitting the evaluation. They are evaluating other users.||''users'' 22 ||'''evaluatee'''||integer||The user being evaluated.||''users'' 23 ||'''score'''||integer||The total given by the evaluator to the evaluatee. (?) 24 25 18 26 == evaluation_mixeval_details== 19 27 ||'''id'''||primary key||