mirror of
https://github.com/Damillora/Altessimo
synced 2024-10-31 21:17:32 +00:00
23 lines
555 B
Python
23 lines
555 B
Python
|
# Generated by Django 3.1.4 on 2020-12-15 20:49
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
initial = True
|
||
|
|
||
|
dependencies = [
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.CreateModel(
|
||
|
name='Category',
|
||
|
fields=[
|
||
|
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
||
|
('name', models.CharField(max_length=255)),
|
||
|
('description', models.CharField(max_length=255)),
|
||
|
],
|
||
|
),
|
||
|
]
|