Skip to content

Commit

Permalink
Run makemigration
Browse files Browse the repository at this point in the history
  • Loading branch information
tsh11na committed Feb 10, 2024
1 parent bf6312e commit 05750fd
Showing 1 changed file with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Generated by Django 4.2.6 on 2024-02-10 09:08

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("tsuke", "0008_tsuketotal"),
]

operations = [
migrations.AlterModelOptions(
name="tsuketotal",
options={"verbose_name": "集計", "verbose_name_plural": "集計"},
),
migrations.AlterField(
model_name="tsuke",
name="is_paid",
field=models.BooleanField(default=False, verbose_name="清算"),
),
]

0 comments on commit 05750fd

Please sign in to comment.