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

Poistetaan citizen_user-taulun rivi jos person-taulun rivi poistuu #6078

Merged
merged 1 commit into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
ALTER TABLE citizen_user
DROP CONSTRAINT fk$person,
ADD CONSTRAINT fk$person FOREIGN KEY (id) REFERENCES person (id) ON DELETE CASCADE;
1 change: 1 addition & 0 deletions service/src/main/resources/migrations.txt
Original file line number Diff line number Diff line change
Expand Up @@ -465,3 +465,4 @@ V466__push_notification_calendar_event_reservation.sql
V467__push_notification_calendar_event_reservation_defaults.sql
V468__citizen_user.sql
V469__income_statement_status.sql
V470__cascade_citizen_user_delete.sql
Loading