syncdb

    3熱度

    2回答

    我正在使用South來管理Django 1.4項目的我的(MySQL)數據庫表,它的工作很好。 這是一個新手問題,但我現在將sorl.thumbnail(http://sorl-thumbnail.readthedocs.org/en/latest/installation.html#installation)添加到設置文件中已安裝應用程序的列表中。 說明說我現在必須使用syncdb,如果我使用「

    2熱度

    1回答

    我在Django和MySQL中有一個應用程序,在我的模型中我有幾個字段指定爲TextField,當我運行syncdb時創建了我的模型的表並創建了指定的列longtext數據類型,迄今爲止非常好。 但是當我嘗試,表中我碰到下面的錯誤 DatabaseError: (1118, 'Row size too large. The maximum row size for the used table t

    0熱度

    1回答

    我經歷的http://django-blog-zinnia.com/documentation/getting-started/install/ 的文檔,當我執行syncdb我得到這個錯誤,標記是在我安裝的應用程序,可有人能幫助我嗎? Traceback (most recent call last): File "manage.py", line 10, in <module>

    5熱度

    1回答

    我正在嘗試應用教程http://docs.django-cms.org/en/2.1.3/getting_started/tutorial.html。 但我沒有成功進行初始數據庫設置 爲什麼當我運行「蟒蛇manage.py執行syncdb --all」我得到這個錯誤? Traceback (most recent call last): File "manage.py", line 10

    2熱度

    1回答

    我嘗試使用post_syncdb信號在創建表後立即添加一些數據到數據庫。 signals.post_syncdb.connect(init) 然後在初始化函數,我想設置權限,所以我用 ct = ContentType.objects.get(app_label='news', model='Article') Permission(name='Approve articles', coden

    0熱度

    1回答

    一直未能找到解決方案。 models.py class Product(models.Model): prod_id = models.IntegerField(primary_key = True) prod_name = models.CharField(max_length=128) prod_price = models.FloatField() p

    1熱度

    1回答

    我開始Django教程,並安裝了虛擬環境和django。我正在使用已安裝sqlite3的Mac 10.6.8。 我正在虛擬環境中工作。但在settings.py文件空白(即''),因爲教程說 "If the file doesn't exist, it will automatically be created when you synchronize the database for the f

    1熱度

    1回答

    所以發生了什麼事: 我開始一個名爲cars的應用程序,並創建一個名爲Cars的模型。當我syncdb,它創建表cars_cars。如何讓這個它只是創建表cars? 此外,要添加到它,如果我有一個名爲cars,有一個叫car模型的應用程序,但希望該模型將要創建的表被稱爲cars?

    6熱度

    4回答

    我有一個模型文件夾,這些文件夾中已有數據庫中的幾個模型。我剛剛添加了另一個文件/模型,但是當我運行syncdb時,它不會被添加到數據庫中。我試過manage.py驗證,它運行良好。我也運行了代碼,它只在嘗試使用「表不存在」進行保存時失敗。 原來的結構是這樣的: /型號 - __ 初始化 __的.py - file1.py - file2.py 和__ init __ .py看起來像: from f

    2熱度

    1回答

    運行我在Django的application.I的models.py有這些類正在使用PostgreSQL 8.3作爲數據庫中找不到 class Course(models.Model): students = models.ManyToManyField(User) title = models.CharField(max_length=200) descriptio