# 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), ), ]