diff options
| -rw-r--r-- | bitbake/lib/toaster/orm/migrations/0004_merge.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/orm/migrations/0004_merge.py b/bitbake/lib/toaster/orm/migrations/0004_merge.py new file mode 100644 index 0000000000..5b9d122c4c --- /dev/null +++ b/bitbake/lib/toaster/orm/migrations/0004_merge.py | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | # -*- coding: utf-8 -*- | ||
| 2 | from __future__ import unicode_literals | ||
| 3 | |||
| 4 | from django.db import migrations, models | ||
| 5 | |||
| 6 | |||
| 7 | class Migration(migrations.Migration): | ||
| 8 | |||
| 9 | dependencies = [ | ||
| 10 | ('orm', '0002_auto_20151223_1528'), | ||
| 11 | ('orm', '0003_customimagepackage'), | ||
| 12 | ] | ||
| 13 | |||
| 14 | operations = [ | ||
| 15 | ] | ||
