annotate Agendas/trunk/db/v1.0/01 - Otros Ponentes.sql @ 226:4d05b5883eac
quitando drop del script (era utilizando durante la fase de desarrollo)
author |
nelopauselli |
date |
Mon, 26 Sep 2011 09:29:59 -0300 |
parents |
f23ee59ef1bd |
children |
|
rev |
line source |
225
|
1 create table OtrosPonentes (
|
|
2 evento_key uniqueidentifier not null,
|
|
3 elt uniqueidentifier not null,
|
|
4 constraint PK_Colaboradores primary key(evento_key, elt),
|
|
5 constraint FK_Colaboradores_Evento foreign key (evento_key) references Evento,
|
|
6 constraint FK_Colaboradores_Persona foreign key (elt) references Persona)
|