-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6047 from fecgov/feature/get_mur_adr_disposition_…
…category_from_table Remove undisplay MUR disposition category
- Loading branch information
Showing
5 changed files
with
112 additions
and
117 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
data/migrations/V0305__add_ref_case_disposition_category.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,22 @@ | ||
/* | ||
This is for issue #6041, Add a new table to ref case(MUR, ADR, AF) disposition category. | ||
*/ | ||
|
||
CREATE TABLE IF NOT EXISTS fecmur.ref_case_disposition_category | ||
( | ||
category_id integer NOT NULL, | ||
category_name varchar(200) NOT NULL, | ||
display_category_name varchar(200) NOT NULL, | ||
doc_type varchar(8) NOT NULL, | ||
published_flg boolean DEFAULT true, | ||
upload_date timestamp without time zone DEFAULT now(), | ||
CONSTRAINT ref_category_pkey PRIMARY KEY (category_id) | ||
); | ||
|
||
ALTER TABLE IF EXISTS fecmur.ref_case_disposition_category OWNER to fec; | ||
|
||
GRANT SELECT ON TABLE fecmur.ref_case_disposition_category TO aomur_usr; | ||
|
||
GRANT ALL ON TABLE fecmur.ref_case_disposition_category TO fec; | ||
|
||
GRANT SELECT ON TABLE fecmur.ref_case_disposition_category TO fec_read; |
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
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