Skip to content

Latest commit

 

History

History
21 lines (20 loc) · 454 Bytes

generated.md

File metadata and controls

21 lines (20 loc) · 454 Bytes

Entity Relationship Diagram

erDiagram
	teachers ||--o{ students : "Teacher has many students"
	teachers }|..|| schools : "School has many teachers"
	schools {
		int id PK,UK "School ID"
		string name  "School Name"
		int teacher_id FK,UK "Teacher ID"
	}
	students {
		int id PK,UK "Student ID"
		string name  "Student Name"
		int teacher_id FK,UK "Teacher ID"
	}
	teachers {
		int id PK,UK "Teacher ID"
		string name  "Teacher Name"
	}

Loading