mirror of
				https://github.com/netbox-community/netbox.git
				synced 2024-05-10 07:54:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			481 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			481 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Generated by Django 2.0.8 on 2018-09-16 02:01
 | |
| 
 | |
| import django.contrib.postgres.fields.jsonb
 | |
| from django.db import migrations
 | |
| 
 | |
| 
 | |
| class Migration(migrations.Migration):
 | |
| 
 | |
|     dependencies = [
 | |
|         ('virtualization', '0007_change_logging'),
 | |
|     ]
 | |
| 
 | |
|     operations = [
 | |
|         migrations.AddField(
 | |
|             model_name='virtualmachine',
 | |
|             name='local_context_data',
 | |
|             field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, null=True),
 | |
|         ),
 | |
|     ]
 |