Adding organization reference to the custom inventory script

This commit is contained in:
Matthew Jones
2014-12-03 15:05:26 -05:00
parent 9a90277e5e
commit 19c0d04885
4 changed files with 14 additions and 2 deletions
+1
View File
@@ -19,6 +19,7 @@ class Migration(SchemaMigration):
('active', self.gf('django.db.models.fields.BooleanField')(default=True)),
('name', self.gf('django.db.models.fields.CharField')(unique=True, max_length=512)),
('script', self.gf('django.db.models.fields.TextField')(default='', blank=True)),
('organization', self.gf('django.db.models.fields.related.ForeignKey')(to=orm['main.Organization'])),
))
db.send_create_signal('main', ['CustomInventoryScript'])