mirror of
https://github.com/daniviga/django-ram.git
synced 2025-08-04 05:07:50 +02:00
* Implement an action do download data in csv * Refactor CSV download * Move price to main models and add csv to bookshelf * Update template and API * Small refactoring
22 lines
488 B
Python
22 lines
488 B
Python
# Generated by Django 5.1.4 on 2024-12-29 15:18
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
(
|
|
"portal",
|
|
"0017_alter_flatpage_content_alter_siteconfiguration_about_and_more",
|
|
),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="siteconfiguration",
|
|
name="currency",
|
|
field=models.CharField(default="EUR", max_length=3),
|
|
),
|
|
]
|