Add FTP users.
[cas.git] / src / ftp / migrations / 0002_auto_20210917_2116.py
diff --git a/src/ftp/migrations/0002_auto_20210917_2116.py b/src/ftp/migrations/0002_auto_20210917_2116.py
new file mode 100644 (file)
index 0000000..2c6e453
--- /dev/null
@@ -0,0 +1,28 @@
+# Generated by Django 3.2.6 on 2021-09-17 21:16
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('ftp', '0001_initial'),
+    ]
+
+    operations = [
+        migrations.RenameField(
+            model_name='ftpuser',
+            old_name='passwd',
+            new_name='password',
+        ),
+        migrations.AddField(
+            model_name='ftpuser',
+            name='password_set_at',
+            field=models.DateTimeField(editable=False, null=True),
+        ),
+        migrations.AlterField(
+            model_name='ftpuser',
+            name='last_seen_at',
+            field=models.DateTimeField(editable=False, null=True),
+        ),
+    ]