diff --git a/openlp/core/utils/db.py b/openlp/core/utils/db.py index 3009dad91..1e18167ab 100644 --- a/openlp/core/utils/db.py +++ b/openlp/core/utils/db.py @@ -33,6 +33,7 @@ log = logging.getLogger(__name__) def drop_column(op, tablename, columnname): drop_columns(op, tablename, [columnname]) + def drop_columns(op, tablename, columns): """ Column dropping functionality for SQLite, as there is no DROP COLUMN support in SQLite