| |
|
|
| from django.db import migrations, models |
|
|
|
|
| class Migration(migrations.Migration): |
|
|
| dependencies = [ |
| ('interview', '0001_initial'), |
| ] |
|
|
| operations = [ |
| migrations.CreateModel( |
| name='Interview', |
| fields=[ |
| ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), |
| ('title', models.CharField(default='Entrevista Técnica', max_length=200)), |
| ('date', models.DateField()), |
| ('time_index', models.IntegerField(help_text='0=7AM, 1=8AM, 2=9AM, etc.')), |
| ('active', models.BooleanField(default=False)), |
| ('applicants', models.ManyToManyField(blank=True, to='interview.applicant')), |
| ], |
| options={ |
| 'ordering': ['date', 'time_index'], |
| }, |
| ), |
| ] |
|
|