mirror of
https://github.com/quentin-g-dev/afup.git
synced 2026-03-24 17:22:06 +01:00
10 lines
330 B
SQL
10 lines
330 B
SQL
CREATE TABLE `afup_forum_sessions_commentaires` (
|
|
`id` int(11) NOT NULL auto_increment,
|
|
`id_session` int(11) default NULL,
|
|
`id_personne_physique` int(11) default NULL,
|
|
`commentaire` mediumtext,
|
|
`date` int(10) default NULL,
|
|
`public` tinyint(4) default '0',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|