Small cleanups

This commit is contained in:
Zoe Roux
2024-12-11 16:42:51 +01:00
parent 0c0628529c
commit 0b77072b04
3 changed files with 7 additions and 16 deletions
-11
View File
@@ -1,11 +0,0 @@
import { db } from "~/db";
import { videos } from "~/db/schema";
import { bubble, bubbleVideo } from "~/models/examples";
import { seedMovie } from "./movies";
const videoExamples = [bubbleVideo];
export const seedTests = async () => {
await db.insert(videos).values(videoExamples).onConflictDoNothing();
await seedMovie(bubble)
};