This repository has been archived on 2026-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
2021-01-03 22:44:44 +01:00

11 lines
182 B
TypeScript

import { r } from "rethinkdb-ts";
async function main() {
await r.connectPool();
const result = await r.db("test").tableCreate("authors").run();
console.log(result);
}
main();