ob-dj-store 0.0.20.7__py3-none-any.whl → 0.0.20.8__py3-none-any.whl
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.
- ob_dj_store/apis/stores/rest/serializers/serializers.py +1 -0
- ob_dj_store/core/stores/gateway/tap/migrations/0008_alter_tappayment_user.py +25 -0
- ob_dj_store/core/stores/gateway/tap/models.py +1 -1
- {ob_dj_store-0.0.20.7.dist-info → ob_dj_store-0.0.20.8.dist-info}/METADATA +1 -1
- {ob_dj_store-0.0.20.7.dist-info → ob_dj_store-0.0.20.8.dist-info}/RECORD +7 -6
- {ob_dj_store-0.0.20.7.dist-info → ob_dj_store-0.0.20.8.dist-info}/WHEEL +1 -1
- {ob_dj_store-0.0.20.7.dist-info → ob_dj_store-0.0.20.8.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,25 @@
|
|
1
|
+
# Generated by Django 3.2.8 on 2025-07-10 11:25
|
2
|
+
|
3
|
+
import django.db.models.deletion
|
4
|
+
from django.conf import settings
|
5
|
+
from django.db import migrations, models
|
6
|
+
|
7
|
+
|
8
|
+
class Migration(migrations.Migration):
|
9
|
+
|
10
|
+
dependencies = [
|
11
|
+
migrations.swappable_dependency(settings.AUTH_USER_MODEL),
|
12
|
+
("tap", "0007_alter_tappayment_source"),
|
13
|
+
]
|
14
|
+
|
15
|
+
operations = [
|
16
|
+
migrations.AlterField(
|
17
|
+
model_name="tappayment",
|
18
|
+
name="user",
|
19
|
+
field=models.ForeignKey(
|
20
|
+
help_text="Captured the User ID for both registered users and Guests (Every guest user has a user_id assigned by device_id)",
|
21
|
+
on_delete=django.db.models.deletion.CASCADE,
|
22
|
+
to=settings.AUTH_USER_MODEL,
|
23
|
+
),
|
24
|
+
),
|
25
|
+
]
|
@@ -37,7 +37,7 @@ class TapPayment(models.Model):
|
|
37
37
|
source = models.CharField(max_length=100, choices=Sources.choices)
|
38
38
|
user = models.ForeignKey(
|
39
39
|
settings.AUTH_USER_MODEL,
|
40
|
-
on_delete=models.
|
40
|
+
on_delete=models.CASCADE,
|
41
41
|
help_text=_(
|
42
42
|
"Captured the User ID for both registered "
|
43
43
|
"users and Guests (Every guest user has a user_id assigned by device_id)"
|
@@ -3,7 +3,7 @@ ob_dj_store/apis/stores/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
|
|
3
3
|
ob_dj_store/apis/stores/filters.py,sha256=kbKtrg9ba9R5ptN9xOOEo-ZZ2IZbQfGH6BJCGUzF1bc,9510
|
4
4
|
ob_dj_store/apis/stores/urls.py,sha256=7vwogfIGcKS0hHYK3iBXKQwi1kCA_vuHY1eZt8rAspg,2021
|
5
5
|
ob_dj_store/apis/stores/views.py,sha256=P8hkpMxC080QlPGFXaQXV2wKoo-B0aUg-hToHtMG24s,41612
|
6
|
-
ob_dj_store/apis/stores/rest/serializers/serializers.py,sha256=
|
6
|
+
ob_dj_store/apis/stores/rest/serializers/serializers.py,sha256=HeUvpFUz8DMOLCmiSEPmitlsoNfjUJq9h2zaXqZKi7w,66013
|
7
7
|
ob_dj_store/apis/tap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
8
8
|
ob_dj_store/apis/tap/serializers.py,sha256=KPrBK4h2-fWvEVf6vOj2ww5-USV9WqpyYicIqoHIiXI,1065
|
9
9
|
ob_dj_store/apis/tap/urls.py,sha256=bnOTv6an11kxpo_FdqlhsizlGPLVpNxBjCyKcf3_C9M,367
|
@@ -22,7 +22,7 @@ ob_dj_store/core/stores/gateway/tap/__init__.py,sha256=5Z6azpb6tmr1nRvKwQWzlYw9r
|
|
22
22
|
ob_dj_store/core/stores/gateway/tap/admin.py,sha256=tGtLg6ttkZXb7JtFPD-5r46pCmb1BsbQpv182KlY3-o,1153
|
23
23
|
ob_dj_store/core/stores/gateway/tap/apps.py,sha256=kWwPjuAJeEmEasVDzUbvRsGaQWL-aYe4JDHNLvCVXPs,212
|
24
24
|
ob_dj_store/core/stores/gateway/tap/managers.py,sha256=FmnJVWwShbNJPU_USZA2hC8g2W3D_S4J3sxN8JROlRo,817
|
25
|
-
ob_dj_store/core/stores/gateway/tap/models.py,sha256=
|
25
|
+
ob_dj_store/core/stores/gateway/tap/models.py,sha256=KfM8s_tFlGIVpaol9CVFjSaCx6zn7wu3l90oWBviV7I,4783
|
26
26
|
ob_dj_store/core/stores/gateway/tap/utils.py,sha256=bajB6TH83AVPzm9npshgIZy-PUd0dt4vS4msLs2h998,5206
|
27
27
|
ob_dj_store/core/stores/gateway/tap/migrations/0001_initial.py,sha256=U8Cv1zLEb4SB4uX5Jjt6QJi7RkZ46-3TF18NcupHb-8,4778
|
28
28
|
ob_dj_store/core/stores/gateway/tap/migrations/0002_auto_20220815_1610.py,sha256=gRsekTbqUH4h5yg5d1zWuai7Wiv6-rfsmjnXundgin8,674
|
@@ -31,6 +31,7 @@ ob_dj_store/core/stores/gateway/tap/migrations/0004_tapcustomer.py,sha256=tazV01
|
|
31
31
|
ob_dj_store/core/stores/gateway/tap/migrations/0005_alter_tappayment_payment_url.py,sha256=M66KGz3b1R-xkv3GPQKkrKDUrO-2L0mmbcnmDDP_xII,512
|
32
32
|
ob_dj_store/core/stores/gateway/tap/migrations/0006_alter_tappayment_source.py,sha256=K-aktQ87sbvSedumIo-dxrJ32CjCwbEWqLyGGzexqhU,655
|
33
33
|
ob_dj_store/core/stores/gateway/tap/migrations/0007_alter_tappayment_source.py,sha256=OXK2Esw908DBYlf5rkvqc645gKSOfkUL0RFOmcTrVFM,700
|
34
|
+
ob_dj_store/core/stores/gateway/tap/migrations/0008_alter_tappayment_user.py,sha256=oSjhhPOMM37VLWdr25YcR9rm0Zkq6wQQzV64fClYCBI,771
|
34
35
|
ob_dj_store/core/stores/gateway/tap/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
35
36
|
ob_dj_store/core/stores/migrations/0001_initial.py,sha256=Ny58kubU6qNVr2TYD1p61Sb8jQGgdLjVN5HwywugN8k,2108
|
36
37
|
ob_dj_store/core/stores/migrations/0002_auto_20220422_0205.py,sha256=hnfr60m50hyIL2QkPfD8rKWLtfVjW58L9vNkYo72ZII,382
|
@@ -158,7 +159,7 @@ ob_dj_store/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
|
|
158
159
|
ob_dj_store/utils/helpers.py,sha256=o7wgypM7mI2vZqZKkhxnTcnHJC8GMQDOuYMnRwXr6tY,2058
|
159
160
|
ob_dj_store/utils/model.py,sha256=DV7hOhTaZL3gh9sptts2jTUFlTArKG3i7oPioq9HLFE,303
|
160
161
|
ob_dj_store/utils/utils.py,sha256=8UVAFB56qUSjJJ5f9vnermtw638gdFy4CFRCuMbns_M,1342
|
161
|
-
ob_dj_store-0.0.20.
|
162
|
-
ob_dj_store-0.0.20.
|
163
|
-
ob_dj_store-0.0.20.
|
164
|
-
ob_dj_store-0.0.20.
|
162
|
+
ob_dj_store-0.0.20.8.dist-info/METADATA,sha256=9FsAIsFu8qFF8RmriRXcPKwHq9krgPwQyJx6Ph-E9oQ,2850
|
163
|
+
ob_dj_store-0.0.20.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
164
|
+
ob_dj_store-0.0.20.8.dist-info/top_level.txt,sha256=CZG3G0ptTkzGnc0dFYN-ZD7YKdJBmm47bsmGwofD_lk,12
|
165
|
+
ob_dj_store-0.0.20.8.dist-info/RECORD,,
|
File without changes
|