Skip to content

Commit

Permalink
Fix comment and drop new functions in down migration
Browse files Browse the repository at this point in the history
  • Loading branch information
mddilley committed Jul 30, 2024
1 parent d35846c commit 3965ba2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
DROP VIEW IF EXISTS component_arcgis_online_view;
DROP VIEW IF EXISTS project_list_view;

DROP FUNCTION IF EXISTS get_project_development_status;
DROP FUNCTION IF EXISTS get_project_development_status_date;

CREATE OR REPLACE VIEW project_list_view AS WITH project_person_list_lookup AS (
SELECT
mpp.project_id,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ BEGIN
END;
$function$;

-- Create function to determine project development status date and reuse for other date formats in view
-- Create function to determine project development status and reuse for other date formats in view
CREATE OR REPLACE FUNCTION public.get_project_development_status(latest_public_meeting_date timestamptz, earliest_active_or_construction_phase_date timestamptz, substantial_completion_date timestamptz, substantial_completion_date_estimated timestamptz, current_phase_simple text)
RETURNS text
LANGUAGE plpgsql
Expand Down

0 comments on commit 3965ba2

Please sign in to comment.