Add FTP users.
[cas.git] / src / ftp / migrations / 0001_initial.py
diff --git a/src/ftp/migrations/0001_initial.py b/src/ftp/migrations/0001_initial.py
new file mode 100644 (file)
index 0000000..563acaa
--- /dev/null
@@ -0,0 +1,24 @@
+# Generated by Django 3.2.6 on 2021-09-14 14:00
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    initial = True
+
+    dependencies = [
+    ]
+
+    operations = [
+        migrations.CreateModel(
+            name='FtpUser',
+            fields=[
+                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+                ('created_at', models.DateTimeField(auto_now_add=True)),
+                ('last_seen_at', models.DateTimeField(null=True)),
+                ('login', models.CharField(max_length=255, unique=True)),
+                ('passwd', models.CharField(blank=True, max_length=255)),
+            ],
+        ),
+    ]