diff --git a/invokeai/app/services/board_record_storage.py b/invokeai/app/services/board_record_storage.py index 8207470e6d..e7ba477a89 100644 --- a/invokeai/app/services/board_record_storage.py +++ b/invokeai/app/services/board_record_storage.py @@ -128,7 +128,7 @@ class SqliteBoardRecordStorage(BoardRecordStorageBase): self._cursor.execute( """--sql - CREATE INDEX IF NOT EXISTS idx_boards_created_at ON boards(created_at); + CREATE INDEX IF NOT EXISTS idx_boards_created_at ON boards (created_at); """ )