fix table name

This commit is contained in:
Joey Hess 2019-02-27 13:52:56 -04:00
parent e2e57f8556
commit 775e6ed86f
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38

View file

@ -57,7 +57,7 @@ openDb = do
unlessM (liftIO $ doesFileExist db) $ do
initDb db $ void $
runMigrationSilent migrateContentIdentifier
h <- liftIO $ H.openDbQueue H.SingleWriter db "contentidentifiers"
h <- liftIO $ H.openDbQueue H.SingleWriter db "content_identifiers"
return $ ContentIdentifierHandle h
closeDb :: ContentIdentifierHandle -> Annex ()