PostgreSQL
 sql >> Baza danych >  >> RDS >> PostgreSQL

Nie wykryto żadnych zmian, gdy wykonuję Python manage.py makemigrations i migrację

program działa poprzez usunięcie abstract = True w klasie meta.po usunięciu go po uruchomieniu python manage.py makemigrations tithe i python manage.py migrate tithe działa dobrze

from __future__ import unicode_literals
from django.utils import timezone
from django.contrib.auth.models import User
from django.conf import settings
from django.contrib.auth import get_user_model
from django.core.signals import setting_changed
from django.dispatch import receiver
from django.db import models

# Create your models here.
class tithe(models.Model):
    member_code = models.ForeignKey(settings.AUTH_USER_MODEL)
    member = models.CharField(max_length=45)
    receipt_code = models.CharField(max_length=45, unique=True)
    tithes = models.IntegerField()
    combinedoffering = models.IntegerField()
    campmeetingoffering = models.IntegerField()
    churchbuilding = models.IntegerField()
    conference = models.IntegerField()
    localchurch = models.IntegerField()
    funds = models.IntegerField()
    total = models.IntegerField()
    created_date = models.DateTimeField(
            default=timezone.now)
    published_date = models.DateTimeField(
            blank=True, null=True)

    def publish(self):
        self.published_date = timezone.now()
        self.save()

    def __str__(self):
        return self.receitcode

    class Meta:
        unique_together = ["receipt_code"]



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Wiele niechcianych rekordów w Grupuj według klauzuli w Postgress

  2. Aktualizacje pola JSON nie są zachowywane w DB

  3. Kiedy aktywuję modele w django, dlaczego nie mogę odpytywać ich bezpośrednio w interfejsie użytkownika postgresql pgAdmin?

  4. Uruchom skrypt za punktem wejścia kontenera w docker-compose

  5. Trzeba przekonwertować scalanie Oracle na zapytanie do PostgreSQL