mirror of
https://github.com/penpot/penpot.git
synced 2025-05-27 22:26:11 +02:00
✨ Many improvements to the database layer.
- Proper handling of referenced tables deletion. - Proper handling of storage referenced tables deletion. - Remove of obsolete tables and triggers.
This commit is contained in:
parent
d32cacf1da
commit
16469daff3
8 changed files with 72 additions and 7 deletions
|
@ -0,0 +1,9 @@
|
|||
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;
|
Loading…
Add table
Add a link
Reference in a new issue