Skip to content

Commit ca38e48

Browse files
chore(greptile): iteration 1 — applied 1, rejected 0
Fix Migrations.kt KDoc to list only the actual ColumbaDatabase builders (DatabaseModule, ServiceDatabaseProvider). The previous text named InterfaceDatabaseModule as a third provider, but that module builds a separate InterfaceDatabase, not ColumbaDatabase. Co-Authored-By: Claude claude-opus-4-7[1m] <noreply@anthropic.com>
1 parent f900388 commit ca38e48

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • data/src/main/java/network/columba/app/data/db/migrations

data/src/main/java/network/columba/app/data/db/migrations/Migrations.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ import androidx.sqlite.db.SupportSQLiteDatabase
1919
*
2020
* When bumping the version, ALWAYS:
2121
* 1. Add the new Migration object below.
22-
* 2. Add it to [ALL_MIGRATIONS] so all three database providers
23-
* (DatabaseModule, ServiceDatabaseProvider, InterfaceDatabaseModule)
22+
* 2. Add it to [ALL_MIGRATIONS] so all ColumbaDatabase builders
23+
* (DatabaseModule, ServiceDatabaseProvider)
2424
* pick it up automatically — there is one source of truth here, not
25-
* three drifting copies.
25+
* two drifting copies.
2626
* 3. Bump the `version = N` value in the @Database annotation in
2727
* ColumbaDatabase.kt to match.
2828
* 4. Add an entry to the version-history comment above.

0 commit comments

Comments
 (0)