Skip to content

Commit 4736056

Browse files
Merge pull request #143 from appwrite/dev
Deno fixes among others
2 parents aa69621 + 5e55d29 commit 4736056

24 files changed

+114
-44
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Once the installation is complete, you can verify the install using
2929

3030
```sh
3131
$ appwrite -v
32-
6.0.0
32+
6.0.1
3333
```
3434

3535
### Install using prebuilt binaries
@@ -60,7 +60,7 @@ $ scoop install https://raw.githubusercontent.com/appwrite/sdk-for-cli/master/sc
6060
Once the installation completes, you can verify your install using
6161
```
6262
$ appwrite -v
63-
6.0.0
63+
6.0.1
6464
```
6565

6666
## Getting Started

docs/examples/databases/update-boolean-attribute.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ appwrite databases updateBooleanAttribute \
33
--collectionId <COLLECTION_ID> \
44
--key '' \
55
--required false \
6-
--default false
6+
--default false \
7+

docs/examples/databases/update-datetime-attribute.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ appwrite databases updateDatetimeAttribute \
33
--collectionId <COLLECTION_ID> \
44
--key '' \
55
--required false \
6-
--default ''
6+
--default '' \
7+

docs/examples/databases/update-email-attribute.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ appwrite databases updateEmailAttribute \
33
--collectionId <COLLECTION_ID> \
44
--key '' \
55
--required false \
6-
6+
--default [email protected] \
7+

docs/examples/databases/update-enum-attribute.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ appwrite databases updateEnumAttribute \
44
--key '' \
55
--elements one two three \
66
--required false \
7-
--default <DEFAULT>
7+
--default <DEFAULT> \
8+

docs/examples/databases/update-float-attribute.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ appwrite databases updateFloatAttribute \
55
--required false \
66
--min null \
77
--max null \
8-
--default null
8+
--default null \
9+

docs/examples/databases/update-integer-attribute.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ appwrite databases updateIntegerAttribute \
55
--required false \
66
--min null \
77
--max null \
8-
--default null
8+
--default null \
9+

docs/examples/databases/update-ip-attribute.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ appwrite databases updateIpAttribute \
33
--collectionId <COLLECTION_ID> \
44
--key '' \
55
--required false \
6-
--default ''
6+
--default '' \
7+

docs/examples/databases/update-relationship-attribute.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ appwrite databases updateRelationshipAttribute \
33
--collectionId <COLLECTION_ID> \
44
--key '' \
55

6+

docs/examples/databases/update-string-attribute.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@ appwrite databases updateStringAttribute \
33
--collectionId <COLLECTION_ID> \
44
--key '' \
55
--required false \
6-
--default <DEFAULT>
6+
--default <DEFAULT> \
7+
8+

0 commit comments

Comments
 (0)