mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-26 15:26:19 +00:00
27 lines
753 B
Python
27 lines
753 B
Python
# Generated by Django 4.2.2 on 2024-08-27 14:16
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='RegistrationProfile',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('emailuser_id', models.IntegerField()),
|
|
('activation_key', models.CharField(max_length=40, verbose_name='activation key')),
|
|
],
|
|
options={
|
|
'verbose_name': 'registration profile',
|
|
'verbose_name_plural': 'registration profiles',
|
|
},
|
|
),
|
|
]
|