some more fixing, activating a changeset seems to work now… ish
This commit is contained in:
parent
29e73ba55c
commit
de37888d50
2 changed files with 6 additions and 2 deletions
|
@ -203,6 +203,9 @@ class DatabaseOperationCollection(BaseSchema):
|
|||
def __len__(self):
|
||||
return len(self._operations)
|
||||
|
||||
def extend(self, items: list[DatabaseOperation]):
|
||||
self._operations.extend(items)
|
||||
|
||||
def append(self, item: DatabaseOperation):
|
||||
self._operations.append(item)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue