We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 016221d commit 93ba4a7Copy full SHA for 93ba4a7
firebase-firestore/src/main/java/com/google/firebase/firestore/local/SQLiteSchema.java
@@ -657,7 +657,7 @@ private void createDataMigrationTable() {
657
}
658
659
private void addPendingDataMigration(String migration) {
660
- db.execSQL("INSERT INTO data_migrations (migration_name) VALUES (?)", new String[] {migration});
+ db.execSQL("INSERT OR IGNORE INTO data_migrations (migration_name) VALUES (?)", new String[] {migration});
661
662
663
private boolean tableExists(String table) {
0 commit comments