RE: how to description FK which contains more than 1 field

2015-08-10 Thread Dario Concilio
Hi again... I could need to read this https://code.djangoproject.com/wiki/MultipleColumnPrimaryKeys Bye Dario Date: Mon, 10 Aug 2015 02:39:12 -0700 From: holland...@gmail.com To: django-users@googlegroups.com Subject: how to description FK which contains more than 1 field Hi all, I have 2

RE: how to description FK which contains more than 1 field

2015-08-10 Thread Dario Concilio
ate: Mon, 10 Aug 2015 02:39:12 -0700 From: holland...@gmail.com To: django-users@googlegroups.com Subject: how to description FK which contains more than 1 field Hi all, I have 2 tables, one is A another is B, and B have one FK which contains more than 1 field references to A. The table struct

how to description FK which contains more than 1 field

2015-08-10 Thread Holland_zwz
Hi all, I have 2 tables, one is A another is B, and B have one FK which contains more than 1 field references to A. The table struct is here: create table A ( oid int not null, types varchar(20) not null, name varchar(30) null, color varchar(20) null, constraint PK_A primary key (oi