Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 559 Bytes

File metadata and controls

20 lines (16 loc) · 559 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.createDatetimeAttribute({
    databaseId: '<DATABASE_ID>',
    collectionId: '<COLLECTION_ID>',
    key: '',
    required: false,
    xdefault: '2020-10-15T06:38:00.000+00:00', // optional
    array: false // optional
});

console.log(result);