dydrich / e-school

1 stars 1 forks source link

avvisi orari uscita anticipata #159

Closed dydrich closed 7 years ago

dydrich commented 7 years ago

implementare avvisi destinati ai genitori, per classe, relativi alle uscite anticipate o ingressi ritardati (assemblee)

dydrich commented 7 years ago

CREATE TABLE IF NOT EXISTS rb_com_assemblee ( id int(11) NOT NULL AUTO_INCREMENT, sigle text, inizio datetime NOT NULL, fine datetime NOT NULL, luogo text NOT NULL, PRIMARY KEY (id) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

CREATE TABLE IF NOT EXISTS rb_com_modifiche_orarie_assemblea ( id int(11) NOT NULL AUTO_INCREMENT, id_assemblea int(11) NOT NULL, classe int(11) NOT NULL, ingresso time DEFAULT NULL, uscita time DEFAULT NULL, PRIMARY KEY (id) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; ALTER TABLE rb_com_modifiche_orarie_assemblea ADD id_avviso INT NULL ;