Fleshed out entity classes and created command to create student

This commit is contained in:
Giovani
2019-04-24 23:57:55 +00:00
parent 17a15766ab
commit 3539c1dd0e
13 changed files with 129 additions and 27 deletions

View File

@@ -155,6 +155,9 @@ namespace BrightGlimmer.Data.Migrations
b.HasIndex("AddressId");
b.HasIndex("StudentNumber")
.IsUnique();
b.ToTable("Students");
});