19 lines
445 B
Python
19 lines
445 B
Python
# Generated by Django 2.2.4 on 2019-09-18 14:32
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('booking', '0005_auto_20190918_1308'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='booking',
|
|
name='country_code',
|
|
field=models.CharField(default=None, max_length=10, null=True, verbose_name='Country code'),
|
|
),
|
|
]
|