A menu management application built with Django, featuring: - Dish management with cover images - Order system with party dates and participants - REST API with Django REST Framework - Bootstrap-styled frontend Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
19 lines
416 B
Python
19 lines
416 B
Python
# Generated by Django 5.2.11 on 2026-02-22 03:36
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('menu', '0003_alter_dish_cover_image'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='dish',
|
|
name='view_count',
|
|
field=models.IntegerField(default=0, verbose_name='浏览次数'),
|
|
),
|
|
]
|