view Agendas/trunk/db/v1.0/01 - Otros Ponentes.sql @ 241:a7daa939ef0c

Probando de armar tests de Agendas.Web
author juanjose.montesdeocaarbos
date Wed, 05 Oct 2011 07:43:09 -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)