Changes between Version 13 and Version 14 of iPeerDatabaseSchema


Ignore:
Timestamp:
2010-10-15T16:23:45Z (14 years ago)
Author:
Serge Okon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • iPeerDatabaseSchema

    v13 v14  
    33== courses ==
    44Contains all the courses in the iPeer instance.
    5 ||__Column__||__Type__||__Description__||__Foreign Key in...-_||
     5||__Column__||__Type__||__Description__||__Foreign Key to table...__||
    66||'''id'''||integer||primary key
    77||'''course'''||string||the course number, ex: APSC 123
     
    1111||'''password'''||string||an MD5 hash of the user password.
    1212||'''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.||users
     13||'''creator_id'''||integer||the ID of the user who created this course.||''users''
    1414||'''created'''||date||a date entry for this entry's creation.
    15 ||'''updater_id'''||integer||the last user's ID who changed this record.||users
     15||'''updater_id'''||integer||the last user's ID who changed this record.||''users''
    1616||'''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.
    1717== evaluation_mixevals ==