23 lines
640 B
Python
23 lines
640 B
Python
|
# Generated by Django 3.1.1 on 2020-09-30 09:04
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('input', '0002_auto_20200922_1340'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='Volonteer',
|
||
|
fields=[
|
||
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||
|
('name', models.CharField(max_length=200)),
|
||
|
('email', models.CharField(max_length=200)),
|
||
|
('username', models.CharField(max_length=200)),
|
||
|
],
|
||
|
),
|
||
|
]
|