12
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Django のモデルで配列を使う

Last updated at Posted at 2019-02-22

MariaDB をデータベースとした時の方法です。
PostgreSQL では別な方法になります。

次のようなテーブルを作成する例です。
charlist_feb2301.png

models.py
# ------------------------------------------------------------------
#
#	models.py
#
#					Feb/23/2019
# ------------------------------------------------------------------
from django.db import models
from django_mysql.models import ListCharField

class City(models.Model):
	code = models.CharField(max_length=10,primary_key=True)
	name = models.CharField(max_length=20)
	population = models.IntegerField(default=0)
	towns = ListCharField(
        	models.CharField(max_length=10),size=6, max_length=(6 * 11))
	date_mod = models.DateField()

	def __str__(self):
		return '<City: ' + \
			self.code + ', ' + self.name + '>'
# ------------------------------------------------------------------

データベースには次のようなテーブルが作成されます。

+------------+-------------+------+-----+---------+-------+
| Field      | Type        | Null | Key | Default | Extra |
+------------+-------------+------+-----+---------+-------+
| code       | varchar(10) | NO   | PRI | NULL    |       |
| name       | varchar(20) | NO   |     | NULL    |       |
| population | int(11)     | NO   |     | NULL    |       |
| towns      | varchar(66) | NO   |     | NULL    |       |
| date_mod   | date        | NO   |     | NULL    |       |
+------------+-------------+------+-----+---------+-------+

必要なライブラリーのインストール方法

sudo pip install django-mysql

参考ページ
List Fields

12
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
12
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?