mirror of
https://github.com/ae-utbm/sith.git
synced 2026-03-13 23:25:00 +00:00
add fields to CounterSellers
This commit is contained in:
@@ -69,5 +69,20 @@ class Migration(migrations.Migration):
|
||||
),
|
||||
),
|
||||
],
|
||||
)
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name="countersellers",
|
||||
name="created_at",
|
||||
field=models.DateTimeField(
|
||||
auto_now_add=True,
|
||||
default=django.utils.timezone.now,
|
||||
verbose_name="created at",
|
||||
),
|
||||
preserve_default=False,
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name="countersellers",
|
||||
name="is_regular",
|
||||
field=models.BooleanField(default=False, verbose_name="regular barman"),
|
||||
),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user