This repository has been archived on 2025-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
facturio/subjects/migrations/0001_initial.py

26 lines
593 B
Python

# Generated by Django 5.0 on 2023-12-19 13:38
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = []
operations = [
migrations.CreateModel(
name="Subject",
fields=[
(
"id",
models.CharField(
max_length=8,
primary_key=True,
serialize=False,
verbose_name="cin",
),
),
],
),
]