Am on Appwrite 1.3.7 (Linux AMI with RDS backend). I am seeing the following errors in the logs:
[critical] (Job{v1-deletes} | ID: 3a130fe3a613982abbd6319db3ab20db | DeletesV1 | [{"project":null,"type":"cacheByTimeStamp","document":null,"resource":null,"datetime":"2024-03-06 14:12:20.416","hourlyUsageRetentionDatetime":null}]) has failed PDOException: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'appwrite._3__metadata' doesn't exist in /usr/src/code/src/Appwrite/Extend/PDOStatement.php:88
Stack trace:
#0 /usr/src/code/src/Appwrite/Extend/PDOStatement.php(88): PDOStatement->execute(NULL)
#1 /usr/src/code/vendor/utopia-php/database/src/Database/Adapter/SQL.php(121): Appwrite\Extend\PDOStatement->execute()
I checked through a dump of the database but _3__metadata is nowhere to be found in the dump. Does anyone know where the system is getting this "_3__metadata" thingy from?
Thanks!
Does a project with _id of 3 exist?
You're referring to the "Project ID"? Then nope... no sign of that
No the _console_projects table
Recommended threads
- Weird permission failure
when creating an account I use following methods: ``` Future<void> register(String email, String password, String username) async { final user = await accoun...
- Relation Question
How do I create a relation from table y to an others x.$id. in my example I have a users table where I use Appwrites unique User IDs and I want other tables fo...
- Unknown attribute type: varchar / text
Since the `string` type is deprecated I tried using `varchar` and `text` in some newer tables, but when running `appwrite pull tables && appwrite types ./src/li...