mirror of
https://github.com/penpot/penpot.git
synced 2025-05-25 11:46:10 +02:00
- Proper handling of referenced tables deletion. - Proper handling of storage referenced tables deletion. - Remove of obsolete tables and triggers.
9 lines
419 B
SQL
9 lines
419 B
SQL
ALTER TABLE file_library_rel
|
|
DROP CONSTRAINT file_library_rel_library_file_id_fkey,
|
|
ADD CONSTRAINT file_library_rel_library_file_id_fkey
|
|
FOREIGN KEY (library_file_id) REFERENCES file(id) ON DELETE CASCADE;
|
|
|
|
ALTER TABLE team_profile_rel
|
|
DROP CONSTRAINT team_profile_rel_profile_id_fkey,
|
|
ADD CONSTRAINT team_profile_rel_profile_id_fkey
|
|
FOREIGN KEY (profile_id) REFERENCES profile(id) ON DELETE CASCADE;
|