doc
This commit is contained in:
parent
174a9da501
commit
0bdd4a1499
14 changed files with 694 additions and 0 deletions
21
invsystem/object_adder/migrations/0002_category.py
Normal file
21
invsystem/object_adder/migrations/0002_category.py
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
# Generated by Django 2.1.4 on 2018-12-22 19:21
|
||||
|
||||
from django.db import migrations, models
|
||||
import uuid
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('object_adder', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.CreateModel(
|
||||
name='Category',
|
||||
fields=[
|
||||
('name', models.TextField(max_length=150)),
|
||||
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
|
||||
],
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue