Skip to content

Commit

Permalink
Clears the choices in the inital migration
Browse files Browse the repository at this point in the history
  • Loading branch information
Koed00 committed May 7, 2015
1 parent 612aec3 commit b2afbf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_rq_jobs/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Migration(migrations.Migration):
name='Job',
fields=[
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
('task', models.CharField(max_length=100, choices=[(b'clean_sessions', b'Clean Sessions')])),
('task', models.CharField(max_length=100, choices=[])),
('args', models.CharField(max_length=255, null=True, blank=True)),
('schedule_type', models.CharField(default=b'O', max_length=1, verbose_name='Schedule Type', choices=[(b'O', 'Once'), (b'H', 'Hourly'), (b'D', 'Daily'), (b'W', 'Weekly'), (b'M', 'Monthly'), (b'Q', 'Quarterly'), (b'Y', 'Yearly')])),
('repeats', models.SmallIntegerField(default=-1, verbose_name='Repeats')),
Expand Down

0 comments on commit b2afbf8

Please sign in to comment.