VercelPostgresError: VercelPostgresError - 'missing_connection_string': You did not supply a 'connectionString' and no 'POSTGRES_URL' env var was found.
import { type InsertPost, posts } from '~/server/db/schema';
import { db } from '../db/index';
export async function createFiveThingsPost(data: InsertPost) {
await db.insert(posts).values(data);
}