mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2025-02-09 03:32:21 +00:00
4 lines
196 B
SQL
4 lines
196 B
SQL
-- Your SQL goes here
|
|
|
|
ALTER TABLE posts DROP CONSTRAINT posts_cover_id_fkey;
|
|
ALTER TABLE posts ADD CONSTRAINT posts_cover_id_fkey FOREIGN KEY (cover_id) REFERENCES medias(id) ON DELETE SET NULL;
|