seed

Seed your database with test or initial data using custom scripts

The prisma db seed command seeds your database with initial data.

Usage

prisma db seed [options]

Options

OptionDescription
-h, --helpDisplay help message
--configCustom path to your Prisma config file
--Pass custom arguments to the seed file

The -- delimiter allows you to pass custom arguments to your seed script (available in version 4.15.0+).

Examples

Run the seed script

npx prisma db seed

Pass custom arguments

npx prisma db seed -- --arg1 value1 --arg2 value2

See also

On this page