Skip to content

Commit

Permalink
Payment migration
Browse files Browse the repository at this point in the history
  • Loading branch information
DEENUU1 committed Dec 29, 2023
1 parent 0a301cd commit 667b9a4
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
1 change: 0 additions & 1 deletion fjob/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
path('api/favourite/', include('favourite.urls')),
path('api/company/', include('company.urls')),
path('api/payment/', include('payment.urls')),
path('api/stats/', include('stats.urls')),
path('api/support/', include('support.urls')),
path('docs/', schema_view.with_ui('swagger', cache_timeout=0), name='schema-swagger-ui'),
]
Expand Down
17 changes: 17 additions & 0 deletions payment/migrations/0003_alter_product_options.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 5.0 on 2023-12-29 00:41

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('payment', '0002_initial'),
]

operations = [
migrations.AlterModelOptions(
name='product',
options={'ordering': ['price_euro'], 'verbose_name': 'Product', 'verbose_name_plural': 'Products'},
),
]

0 comments on commit 667b9a4

Please sign in to comment.