diff options
author | Angel Velasquez <angvp@archlinux.org> | 2016-07-31 05:56:57 +0000 |
---|---|---|
committer | Angel Velasquez <angvp@archlinux.org> | 2016-07-31 05:57:15 +0000 |
commit | 49828ba2cbf3088822a19997cfdd726714cfb6c9 (patch) | |
tree | b15807f6f9f1df7121011616f2a8170c6f2179c5 | |
parent | ad0bddb209dcdb3704370ce0129babbba54e41b2 (diff) |
Add missing migration from ad0bddb209dcdb3704370ce0129babbba54e41b2
Signed-off-by: Angel Velasquez <angvp@archlinux.org>
-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, + ), + ] |