Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: modify db seed to ensure extension exists before transaction #1013

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 14 additions & 11 deletions dashboard/final-example/app/seed/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ import { invoices, customers, revenue, users } from '../lib/placeholder-data';

const sql = postgres(process.env.POSTGRES_URL!, { ssl: 'require' });

async function seedUsers() {
async function ensureExtension() {
await sql`CREATE EXTENSION IF NOT EXISTS "uuid-ossp"`;
}

async function seedUsers() {
await sql`
CREATE TABLE IF NOT EXISTS users (
id UUID DEFAULT uuid_generate_v4() PRIMARY KEY,
Expand All @@ -30,8 +33,6 @@ async function seedUsers() {
}

async function seedInvoices() {
await sql`CREATE EXTENSION IF NOT EXISTS "uuid-ossp"`;

await sql`
CREATE TABLE IF NOT EXISTS invoices (
id UUID DEFAULT uuid_generate_v4() PRIMARY KEY,
Expand All @@ -56,8 +57,6 @@ async function seedInvoices() {
}

async function seedCustomers() {
await sql`CREATE EXTENSION IF NOT EXISTS "uuid-ossp"`;

await sql`
CREATE TABLE IF NOT EXISTS customers (
id UUID DEFAULT uuid_generate_v4() PRIMARY KEY,
Expand Down Expand Up @@ -103,12 +102,16 @@ async function seedRevenue() {

export async function GET() {
try {
const result = await sql.begin((sql) => [
seedUsers(),
seedCustomers(),
seedInvoices(),
seedRevenue(),
]);
// Ensure the extension is created before running the transaction
await ensureExtension();

// Run seeding within a transaction
const result = await sql.begin(async (sql) => {
await seedUsers();
await seedCustomers();
await seedInvoices();
await seedRevenue();
});

return Response.json({ message: 'Database seeded successfully' });
} catch (error) {
Expand Down
25 changes: 14 additions & 11 deletions dashboard/starter-example/app/seed/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ import { invoices, customers, revenue, users } from '../lib/placeholder-data';

const sql = postgres(process.env.POSTGRES_URL!, { ssl: 'require' });

async function seedUsers() {
async function ensureExtension() {
await sql`CREATE EXTENSION IF NOT EXISTS "uuid-ossp"`;
}

async function seedUsers() {
await sql`
CREATE TABLE IF NOT EXISTS users (
id UUID DEFAULT uuid_generate_v4() PRIMARY KEY,
Expand All @@ -30,8 +33,6 @@ async function seedUsers() {
}

async function seedInvoices() {
await sql`CREATE EXTENSION IF NOT EXISTS "uuid-ossp"`;

await sql`
CREATE TABLE IF NOT EXISTS invoices (
id UUID DEFAULT uuid_generate_v4() PRIMARY KEY,
Expand All @@ -56,8 +57,6 @@ async function seedInvoices() {
}

async function seedCustomers() {
await sql`CREATE EXTENSION IF NOT EXISTS "uuid-ossp"`;

await sql`
CREATE TABLE IF NOT EXISTS customers (
id UUID DEFAULT uuid_generate_v4() PRIMARY KEY,
Expand Down Expand Up @@ -103,12 +102,16 @@ async function seedRevenue() {

export async function GET() {
try {
const result = await sql.begin((sql) => [
seedUsers(),
seedCustomers(),
seedInvoices(),
seedRevenue(),
]);
// Ensure the extension is created before running the transaction
await ensureExtension();

// Run seeding within a transaction
const result = await sql.begin(async (sql) => {
await seedUsers();
await seedCustomers();
await seedInvoices();
await seedRevenue();
});

return Response.json({ message: 'Database seeded successfully' });
} catch (error) {
Expand Down