(core) Create _grist_Attachments_fileIdent index in new docs

Summary: Patching up the mistake in https://phab.getgrist.com/D3374#inline-38023.

Test Plan: this

Reviewers: dsagal, paulfitz

Reviewed By: dsagal, paulfitz

Differential Revision: https://phab.getgrist.com/D3382
This commit is contained in:
Alex Hall
2022-04-19 17:19:35 +02:00
parent 47b77c8c24
commit d7514e9cfc
4 changed files with 19 additions and 6 deletions

View File

@@ -148,7 +148,7 @@ export interface ISQLiteDB {
* SQLiteDB.openDB(): Opens a DB, and initialize or migrate it to correct schema.
* db.execTransaction(cb): Runs a callback in the context of a new DB transaction.
*/
export class SQLiteDB {
export class SQLiteDB implements ISQLiteDB {
/**
* Opens a database or creates a new one, according to OpenMode enum. The schemaInfo specifies
* how to initialize a new database, and how to migrate an existing one from an older version.