新增自学模块

This commit is contained in:
2025-06-15 14:41:01 +08:00
parent e752d9e7b7
commit c0b7c29429
9 changed files with 210 additions and 45 deletions

View File

@@ -0,0 +1,23 @@
# Generated by Django 5.2.3 on 2025-06-15 04:45
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('tutorial', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='tutorial',
name='code',
field=models.TextField(default=''),
),
migrations.AddField(
model_name='tutorial',
name='type',
field=models.CharField(choices=[('python', 'Python'), ('c', 'C')], default='python', max_length=10),
),
]