Scholarship can't add more than one enrollment list record

Issue #1254 resolved
Ghislain Hachey created an issue

Comments (4)

  1. Brian Lewis repo owner

    Incorrect Foreign Key definition; to fix:

    ALTER TABLE [dbo].[ScholarshipStudy_] DROP CONSTRAINT [FK_Scholarship__ScholarshipStudy_]
    GO
    
    ALTER TABLE [dbo].[ScholarshipStudy_]  WITH CHECK ADD  CONSTRAINT [FK_Scholarship__ScholarshipStudy_] FOREIGN KEY([schoID])
    REFERENCES [dbo].[Scholarships_] ([schoID])
    GO
    
    ALTER TABLE [dbo].[ScholarshipStudy_] CHECK CONSTRAINT [FK_Scholarship__ScholarshipStudy_]
    GO
    

  2. Log in to comment