Skip to content

Commit

Permalink
connect with database
Browse files Browse the repository at this point in the history
  • Loading branch information
ArabellaJi committed Jul 7, 2023
1 parent 93f3ed6 commit 808736f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
3 changes: 3 additions & 0 deletions Gordon360/Models/CCT/dbo/CUSTOM_PROFILE.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,8 @@ public partial class CUSTOM_PROFILE
public string handshake { get; set; }
[Unicode(false)]
public string calendar { get; set; }
[StringLength(4)]
[Unicode(false)]
public string PlannedGradYear { get; set; }
}
}
3 changes: 3 additions & 0 deletions Gordon360/Models/CCT/dbo/FacStaff.cs
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,9 @@ public partial class FacStaff
[StringLength(15)]
[Unicode(false)]
public string HomePhone { get; set; }
[StringLength(15)]
[Unicode(false)]
public string MobilePhone { get; set; }
[StringLength(1)]
[Unicode(false)]
public string HomeFax { get; set; }
Expand Down
6 changes: 3 additions & 3 deletions Gordon360/Models/CCT/dbo/Student.cs
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,6 @@ public partial class Student
[StringLength(255)]
[Unicode(false)]
public string GradDate { get; set; }
[StringLength(10)]
[Unicode(false)]
public string PlannedGradYear { get; set; }
[StringLength(5)]
[Unicode(false)]
public string Minor1 { get; set; }
Expand Down Expand Up @@ -194,5 +191,8 @@ public partial class Student
public string Mail_Location { get; set; }
public int? ChapelRequired { get; set; }
public int? ChapelAttended { get; set; }
[StringLength(4)]
[Unicode(false)]
public string PlannedGradYear { get; set; }
}
}

0 comments on commit 808736f

Please sign in to comment.