[Alba-desarrollo] SVN Alba r4823 - prosistem/alba/trunk/alba/data/sql

commits en pressenter.com.ar commits en pressenter.com.ar
Mie Jul 18 17:00:50 CEST 2007


Author: josx
Date: 2007-07-18 12:00:46 -0300 (Wed, 18 Jul 2007)
New Revision: 4823

Modified:
   prosistem/alba/trunk/alba/data/sql/schema.sql
Log:
Se reemplazo en docenteHorarios como graba los datos del dia/horario tentativos que los docentes pueden dar clase. (migracion a tabla Eventos) 

Modified: prosistem/alba/trunk/alba/data/sql/schema.sql
===================================================================
--- prosistem/alba/trunk/alba/data/sql/schema.sql	2007-07-18 14:26:27 UTC (rev 4822)
+++ prosistem/alba/trunk/alba/data/sql/schema.sql	2007-07-18 15:00:46 UTC (rev 4823)
@@ -1240,18 +1240,13 @@
 
 CREATE TABLE `docente_horario`
 (
-	`id` INTEGER(11)  NOT NULL AUTO_INCREMENT,
-	`fk_docente_id` INTEGER(11) default 0 NOT NULL,
-	`fk_repeticion_id` INTEGER(11) default 0 NOT NULL,
-	`hora_inicio` TIME  NOT NULL,
-	`hora_fin` TIME  NOT NULL,
-	`dia` INTEGER(11) default 0 NOT NULL,
-	PRIMARY KEY (`id`),
-	INDEX `docente_horario_FI_1` (`fk_repeticion_id`),
+	`fk_docente_id` INTEGER(11)  NOT NULL,
+	`fk_evento_id` INTEGER(11)  NOT NULL,
+	PRIMARY KEY (`fk_docente_id`,`fk_evento_id`),
+	INDEX `docente_horario_FI_1` (`fk_evento_id`),
 	CONSTRAINT `docente_horario_FK_1`
-		FOREIGN KEY (`fk_repeticion_id`)
-		REFERENCES `repeticion` (`id`),
-	INDEX `docente_horario_FI_2` (`fk_docente_id`),
+		FOREIGN KEY (`fk_evento_id`)
+		REFERENCES `evento` (`id`),
 	CONSTRAINT `docente_horario_FK_2`
 		FOREIGN KEY (`fk_docente_id`)
 		REFERENCES `docente` (`id`)




Más información sobre la lista de distribución Alba-desarrollo