Subversion Repositories Applications.gtt

Rev

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

Rev 104 Rev 169
Line 17... Line 17...
17
 
17
 
18
--
18
--
19
-- Structure de la table `gestion_absence`
19
-- Structure de la table `gestion_absence`
Line -... Line 20...
-
 
20
--
20
--
21
 
21
 
22
DROP TABLE IF EXISTS `gestion_absence`;
22
CREATE TABLE IF NOT EXISTS `gestion_absence` (
23
CREATE TABLE IF NOT EXISTS `gestion_absence` (
23
  `ga_id_utilisateur` int(11) unsigned NOT NULL,
24
  `ga_id_utilisateur` int(11) unsigned NOT NULL,
24
  `ga_id_absence_motif` tinyint(3) unsigned NOT NULL,
25
  `ga_id_absence_motif` tinyint(3) unsigned NOT NULL,
Line 36... Line 37...
36
 
37
 
37
--
38
--
38
-- Structure de la table `gestion_absence_motif`
39
-- Structure de la table `gestion_absence_motif`
Line -... Line 40...
-
 
40
--
39
--
41
 
40
 
42
DROP TABLE IF EXISTS `gestion_absence_motif`;
41
CREATE TABLE IF NOT EXISTS `gestion_absence_motif` (
43
CREATE TABLE IF NOT EXISTS `gestion_absence_motif` (
42
  `gam_id_absence_motif` tinyint(3) unsigned NOT NULL auto_increment,
44
  `gam_id_absence_motif` tinyint(3) unsigned NOT NULL auto_increment,
43
  `gam_libelle` varchar(255) collate utf8_unicode_ci NOT NULL,
45
  `gam_libelle` varchar(255) collate utf8_unicode_ci NOT NULL,
Line 59... Line 61...
59
 
61
 
60
--
62
--
61
-- Structure de la table `gestion_projet`
63
-- Structure de la table `gestion_projet`
Line -... Line 64...
-
 
64
--
62
--
65
 
63
 
66
DROP TABLE IF EXISTS `gestion_projet`;
64
CREATE TABLE IF NOT EXISTS `gestion_projet` (
67
CREATE TABLE IF NOT EXISTS `gestion_projet` (
65
  `gp_id_projet` int(11) unsigned NOT NULL auto_increment,
68
  `gp_id_projet` int(11) unsigned NOT NULL auto_increment,
66
  `gp_ce_projet_parent` int(11) NOT NULL default '0',
69
  `gp_ce_projet_parent` int(11) NOT NULL default '0',
Line 83... Line 86...
83
 
86
 
84
--
87
--
85
-- Structure de la table `gestion_projet_categorie`
88
-- Structure de la table `gestion_projet_categorie`
Line -... Line 89...
-
 
89
--
86
--
90
 
87
 
91
DROP TABLE IF EXISTS `gestion_projet_categorie`;
88
CREATE TABLE IF NOT EXISTS `gestion_projet_categorie` (
92
CREATE TABLE IF NOT EXISTS `gestion_projet_categorie` (
89
  `gpc_id_categorie` int(11) unsigned NOT NULL auto_increment,
93
  `gpc_id_categorie` int(11) unsigned NOT NULL auto_increment,
90
  `gpc_libelle` varchar(255) collate utf8_unicode_ci NOT NULL,
94
  `gpc_libelle` varchar(255) collate utf8_unicode_ci NOT NULL,
Line 101... Line 105...
101
 
105
 
102
--
106
--
103
-- Structure de la table `gestion_travail_projet`
107
-- Structure de la table `gestion_travail_projet`
Line -... Line 108...
-
 
108
--
104
--
109
 
105
 
110
DROP TABLE IF EXISTS `gestion_travail_projet`;
106
CREATE TABLE IF NOT EXISTS `gestion_travail_projet` (
111
CREATE TABLE IF NOT EXISTS `gestion_travail_projet` (
107
  `gtp_id_utilisateur` int(11) unsigned NOT NULL,
112
  `gtp_id_utilisateur` int(11) unsigned NOT NULL,
108
  `gtp_id_projet` int(11) unsigned NOT NULL,
113
  `gtp_id_projet` int(11) unsigned NOT NULL,
Line 120... Line 125...
120
 
125
 
121
--
126
--
122
-- Structure de la table `gestion_utilisateur`
127
-- Structure de la table `gestion_utilisateur`
Line -... Line 128...
-
 
128
--
123
--
129
 
124
 
130
DROP TABLE IF EXISTS `gestion_utilisateur`;
125
CREATE TABLE IF NOT EXISTS `gestion_utilisateur` (
131
CREATE TABLE IF NOT EXISTS `gestion_utilisateur` (
126
  `gu_id_utilisateur` int(11) unsigned NOT NULL auto_increment,
132
  `gu_id_utilisateur` int(11) unsigned NOT NULL auto_increment,
127
  `gu_ce_statut` tinyint(3) unsigned NOT NULL,
133
  `gu_ce_statut` tinyint(3) unsigned NOT NULL,
Line 154... Line 160...
154
 
160
 
155
--
161
--
156
-- Structure de la table `gestion_utilisateur_a_projet`
162
-- Structure de la table `gestion_utilisateur_a_projet`
Line -... Line 163...
-
 
163
--
157
--
164
 
158
 
165
DROP TABLE IF EXISTS `gestion_utilisateur_a_projet`;
159
CREATE TABLE IF NOT EXISTS `gestion_utilisateur_a_projet` (
166
CREATE TABLE IF NOT EXISTS `gestion_utilisateur_a_projet` (
160
  `guap_id_utilisateur` int(11) unsigned NOT NULL,
167
  `guap_id_utilisateur` int(11) unsigned NOT NULL,
161
  `guap_id_projet` int(11) unsigned NOT NULL,
168
  `guap_id_projet` int(11) unsigned NOT NULL,
Line 170... Line 177...
170
-- --------------------------------------------------------
177
-- --------------------------------------------------------
Line 171... Line 178...
171
 
178
 
172
--
179
--
173
-- Structure de la table `gestion_utilisateur_statut`
180
-- Structure de la table `gestion_utilisateur_statut`
174
--
-
 
-
 
181
--
175
 
182
DROP TABLE IF EXISTS `gestion_utilisateur_statut`;
176
CREATE TABLE IF NOT EXISTS `gestion_utilisateur_statut` (
183
CREATE TABLE IF NOT EXISTS `gestion_utilisateur_statut` (
177
  `gus_id_utilisateur_statut` tinyint(3) unsigned NOT NULL auto_increment,
184
  `gus_id_utilisateur_statut` tinyint(3) unsigned NOT NULL auto_increment,
178
  `gus_libelle` varchar(255) collate utf8_unicode_ci NOT NULL,
185
  `gus_libelle` varchar(255) collate utf8_unicode_ci NOT NULL,
179
  `gus_mark_recapitulatif` tinyint(1) NOT NULL default '1',
186
  `gus_mark_recapitulatif` tinyint(1) NOT NULL default '1',