Changes between Version 53 and Version 54 of iPeerDatabaseSchema


Ignore:
Timestamp:
2010-10-21T20:11:11Z (14 years ago)
Author:
Serge Okon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • iPeerDatabaseSchema

    v53 v54  
    281281||'''point_low_limit'''||integer||The minimum number of points per member, I guess, don't think it's used (?)
    282282||'''point_high_limit'''||integer||The maximum number of points per member, I guess, again. (?)
     283||'''record_status'''||enum(A,I)||either 'A' or 'I', representing active or inactive. Not always checked by code.
     284||'''creator_id'''||integer||the ID of the ''user'' who created this course.||users
     285||'''created'''||date||a date entry for this entry's creation.
     286||'''updater_id'''||integer||the last ''user's'' ID who changed this record.||users
     287||'''modified'''||date||the last time of modification
    283288== surveys ==
     289Holds the Surveys. There's some confusion here, since a survey has all the info of an ''event'' in it as well. I believe both entries are created for a single survey.
     290||__Column__||__Type__||__Description__||__Foreign Key to table...__||
     291||'''id'''||integer||Primary_Key
     292||'''course_id'''||integer||The ID of the course this Survey is for. All students in that course participate.||''courses''
     293||'''user_id'''||integer||Links to ''users'' table, but why (?) Does not seem to match to creator_id, and is usually 1.||''users''
     294||'''name'''||string||The name of the survey
     295||'''due_date'''||date||The date this survey (and event) is due
     296||'''release_date_begin'''||date||The release date for this survey (and event). Students able to access the survey after this date.
     297||'''release_date_end'''||date||The final fate for this survey (and event). Students are unable to access the survey after this date.
     298
    284299== survey_questions ==
    285300== survey_inputs ==