Questo sito utilizza cookie anche di terze parti. Per avere maggiori informazioni e per negare il tuo consenso al l'utilizzo dei cookie clicca qui. Se prosegui la navigazione acconsenti all'utilizzo dei cookie.OK
  • salta al contenuto

Documentazione openDCN

Strumenti Utente

  • Entra

Strumenti Sito

  • Ultime modifiche
  • Informativa sui cookie
Ti trovi qui: start » il_meeting_online

il_meeting_online

ER del Meeting



SQL delle tabelle:

MEETINGS

CREATE TABLE IF NOT EXISTS `meetings` (
`id` int(11) NOT NULL auto_increment,
`title` text NOT NULL,
`main_motion` int(11) NOT NULL,
`floor_timer` int(11) NOT NULL,
`id_oob` int(11) NOT NULL,
`suspend` int(11) NOT NULL,
`quorum` int(11) NOT NULL,
PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1;


MEETING_ODG - Descrizione ordine del giorno.

CREATE TABLE IF NOT EXISTS `meeting_odg` (
`id` int(11) NOT NULL auto_increment,
`meeting_id` int(11) NOT NULL,
`timestamp` datetime NOT NULL,
`description` text NOT NULL,
PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1;


MEETING MESSAGES

CREATE TABLE IF NOT EXISTS `meeting_messages` (
`id` int(10) unsigned NOT NULL auto_increment,
`text` text NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`motion_id` int(10) unsigned NOT NULL,
`timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1;


MEETING RULES

CREATE TABLE IF NOT EXISTS `meeting_rules` (
`description` text NOT NULL,
`id` int(11) NOT NULL,
`interrupt` tinyint(1) NOT NULL,
`secondable` tinyint(1) NOT NULL,
`debateable` tinyint(1) NOT NULL,
`vote` int(11) NOT NULL,
`amendable` tinyint(1) NOT NULL,
PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1;


MEETING MOTIONS

CREATE TABLE IF NOT EXISTS `meeting_motions` (
`id` int(11) NOT NULL auto_increment,
`testo` text NOT NULL,
`user_id` int(11) NOT NULL,
`timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP,
`meeting_id` int(11) NOT NULL,
`rule_id` int(11) NOT NULL,
`main_motion` int(11) NOT NULL,
`seconded` int(11) NOT NULL,
`debated` int(11) NOT NULL,
`vote` int(11) NOT NULL,
`closed` tinyint(1) NOT NULL,
`oob_id` int(11) NOT NULL,
PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1;


USERS vedi modello generale


indietro - avanti

il_meeting_online.txt · Ultima modifica: 05/06/2013 17:08 (modifica esterna)

Strumenti Pagina

  • Mostra sorgente
  • Revisioni precedenti
  • Puntano qui
  • Torna su
Ad eccezione da dove è diversamente indicato, il contenuto di questo wiki è soggetto alla seguente licenza: CC Attribution-Noncommercial-Share Alike 3.0 Unported
CC Attribution-Noncommercial-Share Alike 3.0 Unported Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki