crawlerApp/githubCrawler/migrations/0001_initial.py

22 lines
490 B
Python
Raw Normal View History

2022-02-05 21:35:04 +00:00
# Generated by Django 3.0 on 2022-02-01 18:00
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='GithubCrawler',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('url', models.CharField(max_length=300)),
],
),
]