From afe1f5d71af7b3b653641af9c335836aee0d16a3 Mon Sep 17 00:00:00 2001 From: Wes <47883837+wesjune@users.noreply.github.com> Date: Tue, 7 Nov 2023 20:17:55 +0800 Subject: [PATCH] Fix the typo in the comments of seed.js (#402) --- dashboard/final-example/scripts/seed.js | 2 +- dashboard/starter-example/scripts/seed.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dashboard/final-example/scripts/seed.js b/dashboard/final-example/scripts/seed.js index 39a0925..ae46273 100644 --- a/dashboard/final-example/scripts/seed.js +++ b/dashboard/final-example/scripts/seed.js @@ -10,7 +10,7 @@ const bcrypt = require('bcrypt'); async function seedUsers(client) { try { await client.sql`CREATE EXTENSION IF NOT EXISTS "uuid-ossp"`; - // Create the "invoices" table if it doesn't exist + // Create the "users" table if it doesn't exist const createTable = await client.sql` CREATE TABLE IF NOT EXISTS users ( id UUID DEFAULT uuid_generate_v4() PRIMARY KEY, diff --git a/dashboard/starter-example/scripts/seed.js b/dashboard/starter-example/scripts/seed.js index 39a0925..ae46273 100644 --- a/dashboard/starter-example/scripts/seed.js +++ b/dashboard/starter-example/scripts/seed.js @@ -10,7 +10,7 @@ const bcrypt = require('bcrypt'); async function seedUsers(client) { try { await client.sql`CREATE EXTENSION IF NOT EXISTS "uuid-ossp"`; - // Create the "invoices" table if it doesn't exist + // Create the "users" table if it doesn't exist const createTable = await client.sql` CREATE TABLE IF NOT EXISTS users ( id UUID DEFAULT uuid_generate_v4() PRIMARY KEY,