rethinkdb-cleartables

A helper method to delete all records in specified or all tables in RethinkDB database


Keywords
rethinkdb, table, tables, delete, remove, destroy, multiple, many, rows, records
License
MIT
Install
npm install rethinkdb-cleartables@1.0.0

Documentation

rethinkdb-cleartables

A helper method to delete all records in specified or all tables in RethinkDB database.

Installation

npm install rethinkdb-cleartables

Usage

import clearTables from "rethinkdb-cleartables";

// clears specified tables
clearTables(connection, "db_name", [ "table1", ... ]).then(() => ...);

// clears all tables
clearTables(connection, "db_name").then(() => ...);

License

MIT