Skip to content

Commit

Permalink
Format migration
Browse files Browse the repository at this point in the history
  • Loading branch information
Almad committed Dec 30, 2024
1 parent 097f170 commit 3646b52
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 40 deletions.
40 changes: 0 additions & 40 deletions ddcz/migrations/0008_auto_20241230_0056.py

This file was deleted.

62 changes: 62 additions & 0 deletions ddcz/migrations/0008_more_market_room_20241230_0056.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# Generated by Django 3.1.14 on 2024-12-29 23:56

import ddcz.models.magic
from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):
dependencies = [
("ddcz", "0007_nonnull_20241229_2201"),
]

operations = [
migrations.AddField(
model_name="market",
name="user_profile",
field=models.ForeignKey(
blank=True,
null=True,
on_delete=django.db.models.deletion.CASCADE,
to="ddcz.userprofile",
),
),
migrations.AlterField(
model_name="market",
name="area",
field=ddcz.models.magic.MisencodedCharField(
blank=True,
db_column="okres",
max_length=20,
null=True,
verbose_name="Kraj",
),
),
migrations.AlterField(
model_name="market",
name="created",
field=models.DateTimeField(auto_now_add=True, verbose_name="Přidáno"),
),
migrations.AlterField(
model_name="market",
name="mail",
field=ddcz.models.magic.MisencodedCharField(
blank=True,
db_column="mail",
max_length=50,
null=True,
verbose_name="E-mail",
),
),
migrations.AlterField(
model_name="market",
name="name",
field=ddcz.models.magic.MisencodedCharField(
blank=True,
db_column="jmeno",
max_length=100,
null=True,
verbose_name="Jméno",
),
),
]

0 comments on commit 3646b52

Please sign in to comment.