Python · 459 bytes Raw Blame History
1 # Generated by Django 5.0.6 on 2025-07-04 23:55
2
3 from django.db import migrations, models
4
5
6 class Migration(migrations.Migration):
7
8 dependencies = [
9 ("api", "0001_initial"),
10 ]
11
12 operations = [
13 migrations.AddField(
14 model_name="restaurant",
15 name="has_toast",
16 field=models.BooleanField(
17 blank=True, help_text="Does this place serve toast?", null=True
18 ),
19 ),
20 ]