PostgreSQL
 sql >> Cơ Sở Dữ Liệu >  >> RDS >> PostgreSQL

Không có thay đổi nào được phát hiện khi tôi thực thi Python management.py makemigrations và di chuyển

chương trình hoạt động bằng cách loại bỏ abstract = True trong meta lớp. sau khi xóa nó khi tôi chạy python manage.py makemigrations tithepython manage.py migrate tithe nó hoạt động tốt

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. Cài đặt Django định cấu hình cơ sở dữ liệu với hai công cụ

  2. Cách không tạo tiện ích mở rộng PostgreSQL 9.0 trên nền tảng RPM

  3. TẠO NGÔN NGỮ plpython3u - PostgreSQL 9.6

  4. psycopg2.ProgrammingError:sự kiện quan hệ không tồn tại

  5. Xác thực mật khẩu không thành công với mật khẩu phức tạp