Add FTP users.
[cas.git] / src / ftp / migrations / 0001_initial.py
1 # Generated by Django 3.2.6 on 2021-09-14 14:00
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='FtpUser',
16             fields=[
17                 ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
18                 ('created_at', models.DateTimeField(auto_now_add=True)),
19                 ('last_seen_at', models.DateTimeField(null=True)),
20                 ('login', models.CharField(max_length=255, unique=True)),
21                 ('passwd', models.CharField(blank=True, max_length=255)),
22             ],
23         ),
24     ]