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
| Option | Description |
|---|---|
-h, --help | Display help message |
--config | Custom 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 seedPass custom arguments
npx prisma db seed -- --arg1 value1 --arg2 value2