We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7886c0 commit f9e2c7bCopy full SHA for f9e2c7b
src/Migration/Destinations/Appwrite.php
@@ -470,6 +470,9 @@ protected function createColumn(Column $resource): bool
470
Column::TYPE_POINT => UtopiaDatabase::VAR_POINT,
471
Column::TYPE_LINE => UtopiaDatabase::VAR_LINESTRING,
472
Column::TYPE_POLYGON => UtopiaDatabase::VAR_POLYGON,
473
+ Column::TYPE_TEXT => UtopiaDatabase::VAR_TEXT,
474
+ Column::TYPE_MEDIUMTEXT => UtopiaDatabase::VAR_MEDIUMTEXT,
475
+ Column::TYPE_LONGTEXT => UtopiaDatabase::VAR_LONGTEXT,
476
default => throw new \Exception('Invalid resource type '.$resource->getType()),
477
};
478
0 commit comments