mirror of
https://github.com/task-17-lct/backend.git
synced 2024-11-15 05:46:53 +03:00
19 lines
389 B
Python
19 lines
389 B
Python
|
# Generated by Django 4.2.1 on 2023-05-26 17:13
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
("events", "0023_restaurant_extra_kwargs"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name="basepoint",
|
||
|
name="price",
|
||
|
field=models.IntegerField(null=True),
|
||
|
),
|
||
|
]
|