Make table for the database
The name of the tableName
A promise if the driver is async, otherwise a boolean
const db = new GoodDB(new MongoDBDriver({uri: "..."}));await db.connect();await db.table('tableName'); Copy
const db = new GoodDB(new MongoDBDriver({uri: "..."}));await db.connect();await db.table('tableName');
const db = new GoodDB(new JSONDriver({path: './database.json'}));db.table('tableName'); Copy
const db = new GoodDB(new JSONDriver({path: './database.json'}));db.table('tableName');
Make table for the database