-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Update REJIS Court Date Handling (Trello 343) - Payable online citations not showing as payable online (Trello 347) - Add new REJIS municipalities: Clayton, Valley Park, Maplewood, St John, and Sycamore Hills (Trello 357 & 366)
- Loading branch information
Showing
7 changed files
with
31 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
src/main/resources/sql/changelog/2018-02-05_Add_Clayton_ValleyPark_Maplewood.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
INSERT INTO citation_datasource_municipality (citation_datasource_id,municipality_id) VALUES (2,17); #Clayton | ||
INSERT INTO datasource_municipality_mapping (citation_datasource_id,municipality_id,datasource_municipality_identifier) VALUES (2,17,'CL'); #Clayton | ||
INSERT INTO rejis_court_mapping (court_id,rejis_court_identifier) VALUES (17,'CL'); #Clayton | ||
|
||
INSERT INTO citation_datasource_municipality (citation_datasource_id,municipality_id) VALUES (2,77); #Valley Park | ||
INSERT INTO datasource_municipality_mapping (citation_datasource_id,municipality_id,datasource_municipality_identifier) VALUES (2,77,'VP'); #Valley Park | ||
INSERT INTO rejis_court_mapping (court_id,rejis_court_identifier) VALUES (68,'VP'); #Valley Park | ||
|
||
INSERT INTO citation_datasource_municipality (citation_datasource_id,municipality_id) VALUES (2,50); #Maplewood | ||
INSERT INTO datasource_municipality_mapping (citation_datasource_id,municipality_id,datasource_municipality_identifier) VALUES (2,50,'MW'); #Maplewood | ||
INSERT INTO rejis_court_mapping (court_id,rejis_court_identifier) VALUES (46,'MW'); #Maplewood |
7 changes: 7 additions & 0 deletions
7
src/main/resources/sql/changelog/2018-02-28_Add_StJohn_SycamoreHills.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
INSERT INTO citation_datasource_municipality (citation_datasource_id,municipality_id) VALUES (2,70); #St John | ||
INSERT INTO datasource_municipality_mapping (citation_datasource_id,municipality_id,datasource_municipality_identifier) VALUES (2,70,'SJ'); #St John | ||
INSERT INTO rejis_court_mapping (court_id,rejis_court_identifier) VALUES (64,'SJ'); #St John | ||
|
||
INSERT INTO citation_datasource_municipality (citation_datasource_id,municipality_id) VALUES (2,72); #Sycamore Hills | ||
INSERT INTO datasource_municipality_mapping (citation_datasource_id,municipality_id,datasource_municipality_identifier) VALUES (2,72,'SY'); #Sycamore Hills | ||
INSERT INTO rejis_court_mapping (court_id,rejis_court_identifier) VALUES (64,'SY'); #Sycamore Hills |
3 changes: 3 additions & 0 deletions
3
src/main/resources/sql/changelog/2018-02-28_Sycamore_Hills_update.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
UPDATE municipality | ||
SET payment_url='https://www.ncourt.com/x-press/x-onlinepayments.aspx?juris=71A21A7B-4F4D-4692-912E-FF780549415E' | ||
WHERE municipality_id='72'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters