Subversion Repositories Applications.projet

Rev

Rev 124 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 124 Rev 140
Line 11... Line 11...
11
  `p_modere` tinyint(3) unsigned NOT NULL default '0',
11
  `p_modere` tinyint(3) unsigned NOT NULL default '0',
12
  PRIMARY KEY  (`p_id`)
12
  PRIMARY KEY  (`p_id`)
13
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
13
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Line 14... Line -...
14
 
-
 
15
 
14
 
16
 
15
 
17
CREATE TABLE `projet_documents` (
16
CREATE TABLE `projet_documents` (
18
  `pd_id` int(10) unsigned NOT NULL default '0',
17
  `pd_id` int(10) unsigned NOT NULL default '0',
19
  `pd_ce_projet` int(10) unsigned NOT NULL default '0',
18
  `pd_ce_projet` int(10) unsigned NOT NULL default '0',
Line 97... Line 96...
97
);
96
);
Line 98... Line 97...
98
 
97
 
99
INSERT INTO `projet_statut` VALUES (0, 'Administrateur');
98
INSERT INTO `projet_statut` VALUES (0, 'Administrateur');
100
INSERT INTO `projet_statut` VALUES (1, 'Coordonateur');
99
INSERT INTO `projet_statut` VALUES (1, 'Coordonateur');
-
 
100
INSERT INTO `projet_statut` VALUES (2, 'Participant');
101
INSERT INTO `projet_statut` VALUES (2, 'Participant');
101
INSERT INTO `projet_statut` VALUES (3, 'En attente');
102
        
102
 
103
CREATE TABLE `projet_statut_utilisateurs` (
103
CREATE TABLE `projet_statut_utilisateurs` (
104
  `psu_id_statut` int(10) unsigned NOT NULL default '0',
104
  `psu_id_statut` int(10) unsigned NOT NULL default '0',
105
  `psu_id_utilisateur` int(11) NOT NULL default '0',
105
  `psu_id_utilisateur` int(11) NOT NULL default '0',
106
  `psu_id_projet` int(10) unsigned NOT NULL default '0',
106
  `psu_id_projet` int(10) unsigned NOT NULL default '0',
Line 165... Line 165...
165
 
165
 
166
#
166
#
167
# Contenu de la table `projet_template`
167
# Contenu de la table `projet_template`
Line 168... Line 168...
168
#
168
#
169
 
-
 
170
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');
-
 
171
    
169