Skip to main content

Create

Create Method

Table Of Create Method

Parameters

  • table (the table name to create)
create(table)

Example Usage

await db.create("table_name");
// -> Create empty table with "table_name" name without inserting any data to it

Returned Data

Returns true if the table has been created successfully

true
Note

This will NOT overwrite an existing table
This will only create the table if it's NOT EXISTED