Forget some migrations
This commit is contained in:
parent
341a74dd5b
commit
37ae754e7f
23
PDMI/store/migrations/0001_initial.py
Normal file
23
PDMI/store/migrations/0001_initial.py
Normal file
@ -0,0 +1,23 @@
|
||||
# Generated by Django 3.0.5 on 2020-04-24 17:19
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
initial = True
|
||||
|
||||
dependencies = [
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Module',
|
||||
fields=[
|
||||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||||
('file', models.FileField(upload_to='')),
|
||||
('name', models.CharField(max_length=255)),
|
||||
('desc', models.TextField(max_length=2048)),
|
||||
],
|
||||
),
|
||||
]
|
Loading…
Reference in New Issue
Block a user