Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added to 2 addional options to the 'Referral Source' dropdown to the … #143

Merged
merged 1 commit into from
Aug 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions db/seed/001_development_seed.sql
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,8 @@ BEGIN TRY
INSERT INTO Configuration.KeyValue (Id, Name, Value, Text, Description, Created, CreatedBy, LastModified, LastModifiedBy) VALUES (18, N'ReferralSource', N'Courts', N'Courts', N'A referral source', @Created, @CreatedUserId, null, null);
INSERT INTO Configuration.KeyValue (Id, Name, Value, Text, Description, Created, CreatedBy, LastModified, LastModifiedBy) VALUES (19, N'ReferralSource', N'Self-referral', N'Self-referral', N'A referral source', @Created, @CreatedUserId, null, null);
INSERT INTO Configuration.KeyValue (Id, Name, Value, Text, Description, Created, CreatedBy, LastModified, LastModifiedBy) VALUES (20, N'ReferralSource', N'Other', N'Other', N'A referral source (please state)', @Created, @CreatedUserId, null, null);
INSERT INTO Configuration.KeyValue (Id, Name, Value, Text, Description, Created, CreatedBy, LastModified, LastModifiedBy) VALUES (21, N'ReferralSource', N'Previously enrolled on CFO3', N'Previously enrolled on CFO3', N'A referral source', @Created, @CreatedUserId, null, null);
INSERT INTO Configuration.KeyValue (Id, Name, Value, Text, Description, Created, CreatedBy, LastModified, LastModifiedBy) VALUES (22, N'ReferralSource', N'Previously enrolled on CFO Activity Hubs', N'Previously enrolled on CFO Activity Hubs', N'A referral source', @Created, @CreatedUserId, null, null);

SET IDENTITY_INSERT [Configuration].[KeyValue] OFF;

Expand Down
Loading