Use PostgreSQL backend and add example table

This commit is contained in:
2024-10-18 11:48:59 +02:00
parent dea9befd24
commit 932b36c530
5 changed files with 110 additions and 3 deletions

View File

@@ -0,0 +1,20 @@
# Generated by Django 5.1.2 on 2024-10-18 09:46
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Parts',
fields=[
('id', models.UUIDField(primary_key=True, serialize=False)),
],
),
]