27 lines
		
	
	
		
			677 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			677 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Generated by Django 2.1.7 on 2019-03-08 10:40
 | 
						|
 | 
						|
import uuid
 | 
						|
 | 
						|
from django.db import migrations, models
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('passbook_core', '0016_auto_20190227_1355'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.CreateModel(
 | 
						|
            name='PropertyMapping',
 | 
						|
            fields=[
 | 
						|
                ('uuid', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
 | 
						|
                ('name', models.TextField()),
 | 
						|
            ],
 | 
						|
            options={
 | 
						|
                'verbose_name': 'Property Mapping',
 | 
						|
                'verbose_name_plural': 'Property Mappings',
 | 
						|
            },
 | 
						|
        ),
 | 
						|
    ]
 |