mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 09:28:40 +00:00
14 lines
373 B
Markdown
14 lines
373 B
Markdown
|
|
const sdk = new Appwrite();
|
||
|
|
|
||
|
|
sdk
|
||
|
|
.setEndpoint('https://[HOSTNAME_OR_IP]/v1') // Your API Endpoint
|
||
|
|
.setProject('5df5acd0d48c2') // Your project ID
|
||
|
|
;
|
||
|
|
|
||
|
|
let promise = sdk.database.createEnumAttribute('[COLLECTION_ID]', '', [], false);
|
||
|
|
|
||
|
|
promise.then(function (response) {
|
||
|
|
console.log(response); // Success
|
||
|
|
}, function (error) {
|
||
|
|
console.log(error); // Failure
|
||
|
|
});
|