Skip to content

Commit

Permalink
last seeds
Browse files Browse the repository at this point in the history
  • Loading branch information
UnicoYal committed Dec 20, 2024
1 parent 8926d59 commit 98e007e
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DELETE FROM movie_genres;
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
INSERT INTO public.movie_genres (movie_id, genre_id)
VALUES
(11, 3),
(7, 3),
(8, 3),
(26, 3),
(13, 3),
(15, 3),

(14, 4),
(35, 4),

(34, 14),
(35, 14),
(36, 14),
(31, 14),
(30, 14),

(34, 13),
(37, 13),
(19, 13),

(37, 11),
(14, 11);

DELETE FROM movie_genres
WHERE movie_id = 34 and genre_id = 16 or movie_id = 3 and genre_id = 6;

0 comments on commit 98e007e

Please sign in to comment.