diff --git a/config/config.sample.yaml b/config/config.sample.yaml
index 10f6d2fb97e7f9ca24fff97f962683894245c11b..c39b881f5a1a3355c1923f036710de55f2ce764b 100644
--- a/config/config.sample.yaml
+++ b/config/config.sample.yaml
@@ -48,8 +48,6 @@ logging:
       enable:
         - "DiscordBot"
 database:
-  userStorePath: "user-store.db"
-  roomStorePath: "room-store.db"
   # You may either use SQLite or Postgresql for the bridge database, which contains
   # important mappings for events and user puppeting configurations.
   # Use the filename option for SQLite, or connString for Postgresql.
diff --git a/src/discordas.ts b/src/discordas.ts
index 0f4b5e11d6a46c238e1e259316d23b11e06c4da2..d3e62144cf9a325920b0078224c0127911935d48 100644
--- a/src/discordas.ts
+++ b/src/discordas.ts
@@ -141,9 +141,6 @@ async function run(port: number, fileConfig: DiscordBridgeConfig) {
             type: "per_room",
         },
         registration,
-        // These must be kept for a while yet since we use them for migrations.
-        roomStore: config.database.roomStorePath,
-        userStore: config.database.userStorePath,
     });
 
     if (config.database.roomStorePath) {