diff --git a/djongo/operations.py b/djongo/operations.py index 088b52abef545d9d8d0e6d011d0a33b38ccccf51..8dff9ee337be2833d7823f2d7f04960b01e8ecd5 100644 --- a/djongo/operations.py +++ b/djongo/operations.py @@ -90,7 +90,7 @@ class DatabaseOperations(BaseDatabaseOperations): converters.append(self.convert_datetimefield_value) return converters - def sql_flush(self, style, tables, sequences, allow_cascade=False): + def sql_flush(self, style, tables, reset_sequences, allow_cascade=False): # TODO: Need to implement this fully return [f'ALTER TABLE "{table}" FLUSH' for table in tables] @@ -111,4 +111,4 @@ class DatabaseOperations(BaseDatabaseOperations): return "EXTRACT('%s' FROM %s)" % (lookup_type, field_name) def date_trunc_sql(self, lookup_type, field_name): - return "DATE_TRUNC('%s', %s)" % (lookup_type, field_name) \ No newline at end of file + return "DATE_TRUNC('%s', %s)" % (lookup_type, field_name)