24 lines
		
	
	
		
			582 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			582 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 2.1.7 on 2019-02-21 12:40
 | 
						|
 | 
						|
import django.contrib.postgres.fields.jsonb
 | 
						|
from django.db import migrations
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('passbook_audit', '0002_auto_20190221_1201'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.RemoveField(
 | 
						|
            model_name='auditentry',
 | 
						|
            name='_context',
 | 
						|
        ),
 | 
						|
        migrations.AddField(
 | 
						|
            model_name='auditentry',
 | 
						|
            name='context',
 | 
						|
            field=django.contrib.postgres.fields.jsonb.JSONField(blank=True, default=dict),
 | 
						|
        ),
 | 
						|
    ]
 |