How do I seed my Cloudflare D1 db?

I have created a simple schema
schema.ts
import { integer, sqliteTable, text } from "drizzle-orm/sqlite-core";

export const users = sqliteTable("users", {
id: text("id").primaryKey(),
name: text("name").notNull(),
email: text("email").notNull().unique(),
createdAt: integer("created_at", { mode: "timestamp" })
.notNull()
.$defaultFn(() => new Date()),
});
schema.ts
import { integer, sqliteTable, text } from "drizzle-orm/sqlite-core";

export const users = sqliteTable("users", {
id: text("id").primaryKey(),
name: text("name").notNull(),
email: text("email").notNull().unique(),
createdAt: integer("created_at", { mode: "timestamp" })
.notNull()
.$defaultFn(() => new Date()),
});
drizzle.config.ts
import type { Config } from "drizzle-kit";

export default {
schema: "./app/db/schema.ts",
out: "./migrations",
driver: "d1-http",
dialect: "sqlite",
} satisfies Config;
drizzle.config.ts
import type { Config } from "drizzle-kit";

export default {
schema: "./app/db/schema.ts",
out: "./migrations",
driver: "d1-http",
dialect: "sqlite",
} satisfies Config;
wrangler.toml
"$schema" = "node_modules/wrangler/config-schema.json"
name = "hono"
compatibility_date = "2025-03-18"
pages_build_output_dir = "./dist"
compatibility_flags = ["nodejs_compat"]

[[d1_databases]]
binding = "DB"
database_name = "hono-db"
database_id = "..."
migrations_dir = "./migrations"
wrangler.toml
"$schema" = "node_modules/wrangler/config-schema.json"
name = "hono"
compatibility_date = "2025-03-18"
pages_build_output_dir = "./dist"
compatibility_flags = ["nodejs_compat"]

[[d1_databases]]
binding = "DB"
database_name = "hono-db"
database_id = "..."
migrations_dir = "./migrations"
and I have been successful in migrating both the local and prod dbs
wrangler d1 migrations apply hono-db --local
wrangler d1 migrations apply hono-db
wrangler d1 migrations apply hono-db --local
wrangler d1 migrations apply hono-db
I have also setup drizzle-seed (correctly I think)
seed.ts
import { seed } from "drizzle-seed";
import { users } from './schema';
import { drizzle } from "drizzle-orm/sqlite";

async function main() {
# env var only available when running with wrangler
const db = drizzle(process.env.DB!);

await seed(db, { users }).refine((f) => ({
users: {
columns: {
name: f.fullName(),
email: f.email(),
},
count: 20
}
}));
}

main();
seed.ts
import { seed } from "drizzle-seed";
import { users } from './schema';
import { drizzle } from "drizzle-orm/sqlite";

async function main() {
# env var only available when running with wrangler
const db = drizzle(process.env.DB!);

await seed(db, { users }).refine((f) => ({
users: {
columns: {
name: f.fullName(),
email: f.email(),
},
count: 20
}
}));
}

main();
How would I run the seed script against Cloudflare D1? How would I run it against the local instance? (Its just a sqlite file inside .wrangler) Is there a way to generate a SQL file from the seed script instead? I know I can run it against both local and prod with wrangler :: https://developers.cloudflare.com/d1/wrangler-commands/#d1-execute
Cloudflare Docs
Wrangler commands · Cloudflare D1 docs
D1 Wrangler commands use REST APIs to interact with the control plane. This page lists the Wrangler commands for D1.
5 Replies
reaper
reaperOP•3w ago
I did try to look around for an answer but I didn't find anything. So I also opened this issue so that the solution can be added to the docs 🙂 https://github.com/drizzle-team/drizzle-orm/issues/4285
GitHub
[DOCS]: How do I seed my Cloudflare D1 db with drizzle-seed? · Is...
Enhancement hasn't been filed before. I have verified this enhancement I'm about to request hasn't been suggested before. Describe the enhancement you want to request I have created a s...
reaper
reaperOP•3w ago
lmk if there's any more context I can provide 🙂
Maston
Maston•3w ago
If you want a workaround, you can connect to remote d1 in a node script using d1 http api requests, just like they did in the drizzle-kit source using drizzle-orm/sqlite-proxy You can do the same for your local d1 .sqlite file with drizzle-orm/better-sqlite3 and a Database instance from better-sqlite3 Or, you can run your worker and add a seed endpoint, request it after running wrangler dev for local d1 or wrangler dev --remote for remote d1, then just delete it, or keep it and add some logic to make sure it only seeds when you want it to.
Maston
Maston•3w ago
i wrote a proof of concept script you can use for both remote (when you specify --remote via args) and local. You can base your seed script on this: https://gist.github.com/mastondzn/76f42e77bf469a87b5dae76f7292ff2c i ended up using libsql client instead of better-sqlite3 but you can do whatever you want @reaper
Gist
seed script
seed script. GitHub Gist: instantly share code, notes, and snippets.
reaper
reaperOP•3w ago
thanks for this! I cross posted the info on github as well. I think I'll try the script for local testing and avoid seeding the prod db for now

Did you find this page helpful?