For the complete documentation index, see llms.txt. This page is also available as Markdown.

DROP TABLE

await client.exec({
   dropTable: table(Mountain),
   ifExists: true
});
// sql: DROP TABLE IF EXISTS "Mountain"

Last updated