mirror of
https://github.com/Rushilwiz/tj2023.git
synced 2025-04-16 18:10:16 -04:00
22 lines
488 B
Python
22 lines
488 B
Python
# Generated by Django 3.1.2 on 2020-10-20 13:48
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='NotionPage',
|
|
fields=[
|
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('url', models.URLField(max_length=300)),
|
|
],
|
|
),
|
|
]
|