model renaming applied
All checks were successful
Django Backend Validation / build (debian-latest, 3.10) (push) Successful in 2m55s
Django Backend Validation / build (debian-latest, 3.12) (push) Successful in 1m49s
Django Backend Validation / build (debian-latest, 3.11) (push) Successful in 1m52s
Django Backend Validation / build (ubuntu-latest, 3.10) (push) Successful in 19s
Django Backend Validation / build (ubuntu-latest, 3.11) (push) Successful in 18s
Django Backend Validation / build (ubuntu-latest, 3.12) (push) Successful in 14s

Signed-off-by: Jochen Mehlich <coding@jochenmehlich.de>
This commit is contained in:
Jochen Mehlich 2024-09-03 16:30:04 +02:00
parent 6cf3e6ef6b
commit 0b84f73cbf
9 changed files with 36 additions and 1 deletions

View File

@ -0,0 +1,17 @@
# Generated by Django 5.1 on 2024-09-03 14:29
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('person', '0001_initial'),
]
operations = [
migrations.RenameModel(
old_name='quote_person_group',
new_name='QuotePersonGroup',
),
]

View File

@ -1,7 +1,7 @@
from django.db import models
import uuid
# Create your models here.
class quote_person_group(models.Model):
class QuotePersonGroup(models.Model):
label = models.CharField(max_length=255, null=False, unique=False)
id = models.UUIDField(default=uuid.uuid4, editable = False, primary_key = True, unique = True)
description = models.TextField(null=True)

0
quote/__init__.py Normal file
View File

3
quote/admin.py Normal file
View File

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

6
quote/apps.py Normal file
View File

@ -0,0 +1,6 @@
from django.apps import AppConfig
class QuoteConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'quote'

View File

3
quote/models.py Normal file
View File

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

3
quote/tests.py Normal file
View File

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

3
quote/views.py Normal file
View File

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.