wiki:ERModel

Version 3 (modified by 221544, 9 days ago) ( diff )

--

Entity-Relationship Model v01

Diagram

Data Requirements

Users

Represents all system users who may act as project owners or workers.

Candidate keys:

  • user_id (primary key)

Attributes:

  • user_id – numeric, required
  • email – text, required, unique
  • password – text, required
  • role – text, required
  • createdAt – date/time, required

Projects

Represents projects owned by users.

Candidate keys:

  • project_id (primary key)

Attributes:

  • project_id – numeric
  • client_id – numeric
  • name – text
  • status – text
  • startDate – date
  • endDate – date

Relationships

Entity-Relationship Model History

  • v01 – Initial ER model created based on project requirements.

Attachments (3)

Download all attachments as: .zip

Note: See TracWiki for help on using the wiki.