Get creation of a text file working
[txt.house] / txt_house / migrations / 0001_initial.py
diff --git a/txt_house/migrations/0001_initial.py b/txt_house/migrations/0001_initial.py
new file mode 100644 (file)
index 0000000..c761dfb
--- /dev/null
@@ -0,0 +1,22 @@
+# Generated by Django 3.0.7 on 2020-07-01 02:36
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    initial = True
+
+    dependencies = [
+    ]
+
+    operations = [
+        migrations.CreateModel(
+            name='TextFile',
+            fields=[
+                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+                ('text', models.TextField()),
+                ('edit_key', models.CharField(max_length=43)),
+            ],
+        ),
+    ]