23 lines
641 B
Python
23 lines
641 B
Python
# Generated by Django 3.0.8 on 2020-08-01 10:29
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('lostplaces_app', '0004_placeimage_submitted_by'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Voucher',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('code', models.CharField(max_length=10)),
|
|
('created', models.DateField(auto_now_add=True)),
|
|
('expires', models.DateField()),
|
|
],
|
|
),
|
|
]
|