Initial commit
This commit is contained in:
22
migrations/0001_initial.py
Normal file
22
migrations/0001_initial.py
Normal file
@@ -0,0 +1,22 @@
|
||||
# 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)),
|
||||
],
|
||||
),
|
||||
]
|
0
migrations/__init__.py
Normal file
0
migrations/__init__.py
Normal file
Reference in New Issue
Block a user