Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 583 Bytes

File metadata and controls

22 lines (18 loc) · 583 Bytes
import { Client, Databases } from "@appwrite.io/console";

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

const databases = new Databases(client);

const result = await databases.createVarcharAttribute({
    databaseId: '<DATABASE_ID>',
    collectionId: '<COLLECTION_ID>',
    key: '',
    size: 1,
    required: false,
    xdefault: '<DEFAULT>', // optional
    array: false, // optional
    encrypt: false // optional
});

console.log(result);