gapguide-api / apps /resources /migrations /0002_alter_resourcecheckpoint_source.py
arifRB's picture
Deploy GapGuide backend (Docker)
ffd36e0 verified
Raw
History Blame Contribute Delete
616 Bytes
# Generated by Django 6.0.4 on 2026-06-10 13:08
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('resources', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='resourcecheckpoint',
name='source',
field=models.CharField(choices=[('manual', 'Manual'), ('jsonld', 'schema.org JSON-LD'), ('html', 'HTML parse'), ('youtube_api', 'YouTube API'), ('playwright', 'Playwright'), ('fcc_github', 'freeCodeCamp GitHub')], default='manual', max_length=20),
),
]