Skip to content

Commit

Permalink
Update TimescaleModel to have timescale manager and regular objects m…
Browse files Browse the repository at this point in the history
…anager
  • Loading branch information
schlunsen committed Dec 30, 2020
1 parent f20c800 commit e5c0c79
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion timescale/db/models/models.py
Original file line number Diff line number Diff line change
@@ -11,7 +11,9 @@ class TimescaleModel(models.Model):
"""
time = TimescaleDateTimeField(interval="1 day")

objects = TimescaleManager()
objects = models.Manager()
timescale = TimescaleManager()


class Meta:
abstract = True

0 comments on commit e5c0c79

Please sign in to comment.