Skip to content

fhnwiris/data-modelling

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

Data Modeling

This is a data-modelling reference project elaborated by the students step-by-step in the FHNW Information Systems Introduction lecture.

Conceptual Data Model

Logical Data Model

Physical Data Model

CREATE TABLE Agent (
  ID       INTEGER NOT NULL PRIMARY KEY, 
  Name     varchar(255) NOT NULL, 
  Email    varchar(255) NOT NULL, 
  Password varchar(255) NOT NULL);
CREATE TABLE Customer (
  ID      INTEGER NOT NULL PRIMARY KEY, 
  Name    varchar(255) NOT NULL, 
  Email   varchar(255) NOT NULL, 
  Mobile  varchar(255) NOT NULL, 
  AgentID integer(10) NOT NULL, 
FOREIGN KEY(AgentID) REFERENCES Agent(ID));

Maintainer

License

About

Data Modeling

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published