Probably already on a list somewhere, but would love the dashboard to show the primary key marked co
Probably already on a list somewhere, but would love the dashboard to show the primary key marked column
interface DetailsDataType{
description:string,
ref:string //Primary Key in Table
}const { results } = await c.env.DATABASE.prepare("INSERT INTO details (ref, description) VALUES (?, ?) RETURNING *")
.bind(descData.description, descData.ref)
.run()