Does a backup restore (not using time traval) incurs a charge (i.e. does it rows as writes)?
Does a backup restore (not using time traval) incurs a charge (i.e. does it rows as writes)?
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()