23 lines
		
	
	
		
			552 B
		
	
	
	
		
			Python
		
	
	
	
	
	
		
		
			
		
	
	
			23 lines
		
	
	
		
			552 B
		
	
	
	
		
			Python
		
	
	
	
	
	
|  | # Generated by Django 2.1.1 on 2018-10-27 20:06 | ||
|  | 
 | ||
|  | from django.db import migrations, models | ||
|  | 
 | ||
|  | 
 | ||
|  | class Migration(migrations.Migration): | ||
|  | 
 | ||
|  |     initial = True | ||
|  | 
 | ||
|  |     dependencies = [ | ||
|  |     ] | ||
|  | 
 | ||
|  |     operations = [ | ||
|  |         migrations.CreateModel( | ||
|  |             name='phrase', | ||
|  |             fields=[ | ||
|  |                 ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), | ||
|  |                 ('language', models.CharField(max_length=3)), | ||
|  |                 ('phrase', models.CharField(max_length=65536)), | ||
|  |             ], | ||
|  |         ), | ||
|  |     ] |