Coverage for tictactoe/contest/migrations/0003_latestentry : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
# encoding: utf8
migrations.swappable_dependency(settings.AUTH_USER_MODEL), ('contest', '0002_fight'), ]
migrations.CreateModel( name='LatestEntry', fields=[ ('id', models.AutoField(serialize=False, primary_key=True, verbose_name='ID', auto_created=True)), ('user', models.ForeignKey(to_field='id', to=settings.AUTH_USER_MODEL)), ('entry', models.ForeignKey(to_field='id', to='contest.Entry')), ], options={ 'verbose_name_plural': 'Latest Entries', }, bases=(models.Model,), ), ] |