33 lines
1.5 KiB
Python
33 lines
1.5 KiB
Python
# Generated by Django 3.1.3 on 2020-11-13 09:36
|
|
|
|
from django.db import migrations, models
|
|
import uuid
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Synthea',
|
|
fields=[
|
|
('created_at', models.DateTimeField(auto_now_add=True, help_text='The date and time this model has been created', verbose_name='Date created')),
|
|
('updated_at', models.DateTimeField(auto_now=True, help_text='The date and time this model has been updated', verbose_name='Date updated')),
|
|
('id', models.UUIDField(default=uuid.uuid4, editable=False, help_text='A unique id', primary_key=True, serialize=False, unique=True, verbose_name='ID')),
|
|
('state', models.CharField(help_text='The state for which synthea generate data.', max_length=200, verbose_name='Stage')),
|
|
('population', models.PositiveSmallIntegerField(default=50, help_text='The size of the population', verbose_name='Population')),
|
|
('gender', models.CharField(help_text='Select the gender type', max_length=1, verbose_name='Gender')),
|
|
('age', models.CharField(help_text='Select the age range', max_length=10, verbose_name='Age range')),
|
|
('module', models.CharField(help_text='Select the module', max_length=50, verbose_name='Mopdule')),
|
|
],
|
|
options={
|
|
'verbose_name': 'token',
|
|
'verbose_name_plural': 'tokens',
|
|
},
|
|
),
|
|
]
|