Skip to content

Commit

Permalink
Added migration for testapp.
Browse files Browse the repository at this point in the history
  • Loading branch information
bartTC committed Jan 17, 2018
1 parent 16701a9 commit 9c610d6
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions salmonella/tests/testapp/migrations/0003_auto_20180117_1130.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Generated by Django 2.0.1 on 2018-01-17 11:30

from django.conf import settings
from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

dependencies = [
('testapp', '0002_auto_20171206_1606'),
]

operations = [
migrations.AlterField(
model_name='directprimarykeymodel',
name='num',
field=models.IntegerField(primary_key=True, serialize=False, verbose_name='Number'),
),
migrations.AlterField(
model_name='salmonellatest',
name='rawid_fk_limited',
field=models.ForeignKey(blank=True, limit_choices_to={'is_staff': True}, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='rawid_fk_limited', to=settings.AUTH_USER_MODEL),
),
migrations.AlterField(
model_name='salmonellatest',
name='salmonella_fk_limited',
field=models.ForeignKey(blank=True, limit_choices_to={'is_staff': True}, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='salmonella_fk_limited', to=settings.AUTH_USER_MODEL),
),
]

0 comments on commit 9c610d6

Please sign in to comment.