diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-12-11 17:13:02 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2016-12-11 17:13:02 -0500 |
commit | 422aaee026c57b65dda81b78b6a0f49263c6dd1e (patch) | |
tree | 6bc80bcb093ed2f0932d4469a4400ce293c94860 /packages/migrations | |
parent | 464b8d1fa572ab57d41569d45ba94b771e0a5ced (diff) | |
parent | 83eea8e167e698f8f14ea2494837510404dc75ff (diff) |
Merge branch 'archweb' into archweb-genericarchweb-generic
# Conflicts:
# templates/public/download.html
Diffstat (limited to 'packages/migrations')
-rw-r--r-- | packages/migrations/0002_auto_20160731_0556.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/packages/migrations/0002_auto_20160731_0556.py b/packages/migrations/0002_auto_20160731_0556.py new file mode 100644 index 00000000..feaa8b97 --- /dev/null +++ b/packages/migrations/0002_auto_20160731_0556.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import models, migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('packages', '0001_initial'), + ] + + operations = [ + migrations.AlterField( + model_name='signoffspecification', + name='known_bad', + field=models.BooleanField(default=False, help_text=b'Is this package known to be broken in some way?'), + preserve_default=True, + ), + ] |