Skip to content

Commit

Permalink
modified: prisma/seed.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
momozahara committed Aug 14, 2024
1 parent 8d97b49 commit 8e2e217
Showing 1 changed file with 6 additions and 21 deletions.
27 changes: 6 additions & 21 deletions prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,50 +3,35 @@ import { type Prisma, PrismaClient } from "@prisma/client";
const prisma = new PrismaClient();

const seedData: Prisma.ChannelCreateInput[] = [
{
name: "bootleg smoke",
key: "bLlloaA4b4g",
weight: 0,
},
{
name: "chillhop raccoon",
key: "5yx6BWlEVcY",
weight: 1,
weight: 0,
},
{
name: "chillhop relaxing raccoon",
key: "7NOSDKb0HlU",
weight: 2,
weight: 1,
},
{
name: "college girl",
key: "jfKfPfyJRdk",
weight: 3,
weight: 2,
},
{
name: "sleepy girl",
key: "rUxyKA_-grg",
weight: 4,
},
{
name: "lonely girl",
key: "dxUtV-zNv9w",
weight: 5,
weight: 3,
},
{
name: "college guy",
key: "4xDzrJKXOOY",
weight: 6,
},
{
name: "college guy piano",
key: "tfBVp0Zi2iE",
weight: 7,
weight: 4,
},
{
name: "coffee shop",
key: "lP26UCnoH9s",
weight: 8,
weight: 5,
},
];

Expand Down

0 comments on commit 8e2e217

Please sign in to comment.