artemis-model 0.1.122__tar.gz → 0.1.124__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {artemis_model-0.1.122 → artemis_model-0.1.124}/PKG-INFO +1 -1
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/zone_activity.py +2 -4
- {artemis_model-0.1.122 → artemis_model-0.1.124}/pyproject.toml +1 -1
- {artemis_model-0.1.122 → artemis_model-0.1.124}/README.md +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/__init__.py +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/album.py +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/artist.py +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/auth.py +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/banned_tracks.py +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/base.py +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/category.py +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/dj_set.py +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/genre.py +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/location.py +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/message.py +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/organization.py +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/otp.py +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/permission.py +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/playlist.py +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/redis/__init__.py +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/redis/bucket.py +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/redis/device.py +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/redis/keys.py +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/redis/play_history.py +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/redis/zone_state.py +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/schedule.py +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/setting.py +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/sqs/__init__.py +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/sqs/messages.py +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/track.py +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/user.py +0 -0
- {artemis_model-0.1.122 → artemis_model-0.1.124}/artemis_model/zone.py +0 -0
@@ -31,11 +31,9 @@ class PlayerActivityMixin(TimeStampMixin, AuditMixin):
|
|
31
31
|
activity_type: Mapped[str] = mapped_column(String, nullable=False)
|
32
32
|
activity_data: Mapped[dict] = mapped_column(JSON, nullable=True)
|
33
33
|
|
34
|
-
__table_args__ = (
|
35
|
-
Index("idx_player_activity_player_created", "player_id", TimeStampMixin.created_at.desc()),
|
36
|
-
Index("idx_player_activity_created", AuditMixin.TimeStampMixin.desc()),
|
37
|
-
)
|
38
34
|
|
35
|
+
Index("idx_player_activity_player_created", "player_id", PlayerActivityMixin.created_at.desc())
|
36
|
+
Index("idx_player_activity_created", PlayerActivityMixin.created_at.desc())
|
39
37
|
|
40
38
|
class PlayerActivitySync(CustomSyncBase, PlayerActivityMixin):
|
41
39
|
"""Sync model for Player Activity"""
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|