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,