view Agendas/trunk/db/v1.0/01 - Otros Ponentes.sql @ 234:cc71f96ac134

Combinar
author juanjose.montesdeocaarbos
date Tue, 04 Oct 2011 20:36:27 -0300
parents 4d05b5883eac
children
line wrap: on
line source

create table OtrosPonentes (
	evento_key uniqueidentifier not null,
	elt uniqueidentifier not null,
	constraint PK_Colaboradores primary key(evento_key, elt),
	constraint FK_Colaboradores_Evento foreign key (evento_key) references Evento,
	constraint FK_Colaboradores_Persona foreign key (elt) references Persona)