125 |
alexandre_ |
1 |
ALTER TABLE `projet` ADD `p_modere` TINYINT UNSIGNED DEFAULT '0' NOT NULL ;
|
|
|
2 |
INSERT INTO `projet_statut` ( `ps_id_statut` , `ps_statut_nom` )
|
|
|
3 |
VALUES (
|
|
|
4 |
'3', 'En attente'
|
|
|
5 |
);
|
|
|
6 |
CREATE TABLE `projet_template` (
|
|
|
7 |
`pt_id_template` smallint(5) unsigned NOT NULL default '0',
|
|
|
8 |
`pt_i18n` varchar(5) NOT NULL default '',
|
|
|
9 |
`pt_template` text NOT NULL,
|
|
|
10 |
PRIMARY KEY (`pt_id_template`)
|
|
|
11 |
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|
|
12 |
|
|
|
13 |
#
|
|
|
14 |
# Contenu de la table `projet_template`
|
|
|
15 |
#
|
|
|
16 |
|
|
|
17 |
INSERT INTO `projet_template` VALUES (1, 'fr-FR', 'L\'utilisateur {nom} {prenom} souhaite être inscrit au projet {nom_projet} dont vous êtes modérateur.\r\nCliquez sur le lien suivant pour modérer son inscription.\r\n{lien}\r\n');
|
|
|
18 |
|