Subversion Repositories Applications.projet

Rev

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

Rev 141 Rev 142
Line -... Line 1...
-
 
1
INSERT INTO `gen_application` ( `gap_id_application` , `gap_nom` , `gap_description` , `gap_chemin` , `gap_bool_applette` )
-
 
2
VALUES (
-
 
3
LAST_INSERT_ID(), 'Projets', 'Application de gestion de projets', 'client/projet/projet.php', '0'
-
 
4
);
-
 
5
 
1
CREATE TABLE `projet` (
6
CREATE TABLE `projet` (
2
  `p_id` int(10) unsigned NOT NULL default '0',
7
  `p_id` int(10) unsigned NOT NULL default '0',
3
  `p_titre` varchar(255) NOT NULL default '',
8
  `p_titre` varchar(255) NOT NULL default '',
4
  `p_resume` varchar(255) NOT NULL default '',
9
  `p_resume` varchar(255) NOT NULL default '',
5
  `p_description` text,
10
  `p_description` text,