Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 585 Bytes

File metadata and controls

22 lines (18 loc) · 585 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.createIntegerAttribute({
    databaseId: '<DATABASE_ID>',
    collectionId: '<COLLECTION_ID>',
    key: '',
    required: false,
    min: null, // optional
    max: null, // optional
    xdefault: null, // optional
    array: false // optional
});

console.log(result);