Get creation of a text file working
[txt.house] / txt_house / migrations / 0001_initial.py
1 # Generated by Django 3.0.7 on 2020-07-01 02:36
2
3 from django.db import migrations, models
4
5
6 class Migration(migrations.Migration):
7
8     initial = True
9
10     dependencies = [
11     ]
12
13     operations = [
14         migrations.CreateModel(
15             name='TextFile',
16             fields=[
17                 ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
18                 ('text', models.TextField()),
19                 ('edit_key', models.CharField(max_length=43)),
20             ],
21         ),
22     ]