So that it will be created by Django's manage script syncdb command.

Signed-off-by: Cleber Rosa <[email protected]>
---
 frontend/afe/models.py | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/frontend/afe/models.py b/frontend/afe/models.py
index cef1efd..9b0376f 100644
--- a/frontend/afe/models.py
+++ b/frontend/afe/models.py
@@ -1414,3 +1414,12 @@ class SpecialTask(dbmodels.Model, 
model_logic.ModelExtensions):
             result += u' (active)'
 
         return result
+
+
+class MigrateInfo(dbmodels.Model, model_logic.ModelExtensions):
+    version = dbmodels.IntegerField(primary_key=True, default=None,
+                                    blank=True, null=False)
+    objects = model_logic.ExtendedManager()
+
+    class Meta:
+        db_table = 'migrate_info'
-- 
1.7.11.7

_______________________________________________
Autotest-kernel mailing list
[email protected]
https://www.redhat.com/mailman/listinfo/autotest-kernel

Reply via email to