Skip to content

Commit 71e8c88

Browse files
authored
Merge pull request #193 from appwrite/dev
Dev
2 parents 6702551 + 936b43d commit 71e8c88

32 files changed

+1067
-88
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-
9.0.2
32+
9.1.0
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-
9.0.2
63+
9.1.0
6464
```
6565

6666
## Getting Started
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
appwrite databases create-line-attribute \
2+
--database-id <DATABASE_ID> \
3+
--collection-id <COLLECTION_ID> \
4+
--key '' \
5+
--required false
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
appwrite databases create-point-attribute \
2+
--database-id <DATABASE_ID> \
3+
--collection-id <COLLECTION_ID> \
4+
--key '' \
5+
--required false
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
appwrite databases create-polygon-attribute \
2+
--database-id <DATABASE_ID> \
3+
--collection-id <COLLECTION_ID> \
4+
--key '' \
5+
--required false
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
appwrite databases update-line-attribute \
2+
--database-id <DATABASE_ID> \
3+
--collection-id <COLLECTION_ID> \
4+
--key '' \
5+
--required false
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
appwrite databases update-point-attribute \
2+
--database-id <DATABASE_ID> \
3+
--collection-id <COLLECTION_ID> \
4+
--key '' \
5+
--required false
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
appwrite databases update-polygon-attribute \
2+
--database-id <DATABASE_ID> \
3+
--collection-id <COLLECTION_ID> \
4+
--key '' \
5+
--required false
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
appwrite tables-db create-line-column \
2+
--database-id <DATABASE_ID> \
3+
--table-id <TABLE_ID> \
4+
--key '' \
5+
--required false
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
appwrite tables-db create-point-column \
2+
--database-id <DATABASE_ID> \
3+
--table-id <TABLE_ID> \
4+
--key '' \
5+
--required false
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
appwrite tables-db create-polygon-column \
2+
--database-id <DATABASE_ID> \
3+
--table-id <TABLE_ID> \
4+
--key '' \
5+
--required false

0 commit comments

Comments
 (0)