You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
656 B
26 lines
656 B
# Generated by Django 2.1 on 2023-09-06 14:02
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='Admin',
|
|
fields=[
|
|
('username', models.CharField(max_length=32, primary_key=True, serialize=False, verbose_name='管理员账号')),
|
|
('password', models.CharField(max_length=128, verbose_name='管理员密码')),
|
|
],
|
|
options={
|
|
'verbose_name': '管理员',
|
|
'db_table': 'Eduadmin',
|
|
},
|
|
),
|
|
]
|