Files
appwrite/docs/examples/1.8.x/console-web/examples/tablesdb/create.md
Jake Barnby f85bf446e6 Sync docs
2025-08-26 15:40:03 +12:00

412 B

import { Client, TablesDB } from "@appwrite.io/console";

const client = new Client() .setEndpoint('https://.cloud.appwrite.io/v1') // Your API Endpoint .setProject('<YOUR_PROJECT_ID>'); // Your project ID

const tablesDB = new TablesDB(client);

const result = await tablesDB.create({ databaseId: '<DATABASE_ID>', name: '', enabled: false // optional });

console.log(result);