Google drive shared files fix + shortcuts (#300)

Also fixes foreign key constraint issue when manually wiping postgres + keeps track of accessed folders
This commit is contained in:
Sid Ravinutala
2023-08-17 11:54:00 -04:00
committed by GitHub
parent 11c071da33
commit 81a4934bb8
7 changed files with 137 additions and 33 deletions

View File

@ -34,6 +34,7 @@ def wipe_all_rows(database: str) -> None:
cur.execute(f"DELETE FROM document")
cur.execute(f"DELETE FROM connector_credential_pair")
cur.execute(f"DELETE FROM index_attempt")
cur.execute(f"DELETE FROM credential")
conn.commit()
for table_name in table_names: