Entries from 2014-06-07 to 1 day

Django で親モデル(親クラス)から子モデル(子クラス)へのアクセスの仕方

英語で書いた。誤字脱字はソーソーリー。 これは、本当に詰まった。 How to access a child models or classes in Django... -

How to access a child models or classes in Django, or how to cast models in Django.

https://django-polymorphic.readthedocs.org/en/latest/ """""" The bellow text will be deleted """"""Let's think by giving a actual example...models.py from django.db import models class Person(models.Model): name = models.CharField(max_leng…

AssertionError: ForeignKey cannot define a relation with abstract class Attribute

抽象クラスを外部キーに指定できない、どうしよう。 AssertionError: ForeignKey cannot define a relation with abstract class Attribute 抽象クラス(抽象モデル)に対して、CREATE する SQL 文がないことを確認する。 $ sudo python manage.py sql trans…

Django 列追加、削除とか(´;ω;`)ブワッ

あー、列の追加削除どうすりゃええんやろと思って調べてみる。 Google: Django 列 追加 削除 結果① Djangoのモデルにフィールドを追加する時のフロー - SELECT * FROM life; 結果② Djangoのモデルにフィールドを追加する方法うわ、無いのか、結構これ、あか…