Add schedule database

This commit is contained in:
james 2010-06-10 20:37:11 +00:00
parent df3af58ffa
commit 56ce08201a
3 changed files with 18 additions and 2 deletions

View File

@ -1 +1 @@
176
178

10
db/db.update.178.sql Normal file
View File

@ -0,0 +1,10 @@
CREATE TABLE `sfiab`.`schedule` (
`id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`conferences_id` INT NOT NULL ,
`locations_id` INT NOT NULL ,
`events_id` INT NOT NULL ,
`hour` INT NOT NULL ,
`minute` INT NOT NULL ,
`duration` INT NOT NULL ,
`date` DATE NOT NULL
) ENGINE = MYISAM CHARACTER SET utf8 COLLATE utf8_general_ci;

View File

@ -524,10 +524,16 @@ ul.conferencenav li a:hover {
}
.scheduleevent {
border: 1px solid red;
position: absolute;
border: 2px solid red;
background: orange;
width: 150px;
margin:0;
width: 148px;
z-index: 1000;
display: none;
overflow: auto;
font-size: 0.75em;
}
#scheduleeventeditor {