Skip to content
This repository was archived by the owner on Dec 10, 2022. It is now read-only.

Commit e9ff4a2

Browse files
committedFeb 25, 2014
Merge branch 'feature/publish' of https://github.com/jbvigneron/PTI3-Trombinoscope into develop
2 parents 8d73b96 + 62c641a commit e9ff4a2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+2373
-0
lines changed
 

‎database/Base.SQL

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
-- phpMyAdmin SQL Dump
2+
-- version 3.3.9.2
3+
-- http://www.phpmyadmin.net
4+
--
5+
-- Serveur: 127.0.0.1
6+
-- Généré le : Mer 04 Mai 2011 à 10:21
7+
-- Version du serveur: 5.1.49
8+
-- Version de PHP: 5.3.6
9+
10+
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
11+
12+
13+
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
14+
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
15+
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
16+
/*!40101 SET NAMES utf8 */;
17+
18+
--
19+
-- Base de données: `trombinoscope`
20+
--
21+
22+
-- --------------------------------------------------------
23+
24+
--
25+
-- Structure de la table `association`
26+
--
27+
28+
CREATE TABLE IF NOT EXISTS `association` (
29+
`ID_ASSOCIATION` bigint(4) NOT NULL AUTO_INCREMENT,
30+
`NOM` char(32) COLLATE latin1_general_ci DEFAULT NULL,
31+
`IMAGE` char(128) COLLATE latin1_general_ci NOT NULL,
32+
`SITE` varchar(128) COLLATE latin1_general_ci NOT NULL,
33+
`PRESIDENT` bigint(5) NOT NULL,
34+
`VICE_PRESIDENT` bigint(5) NOT NULL,
35+
`SECRETAIRE` bigint(5) NOT NULL,
36+
`TRESORIER` bigint(5) NOT NULL,
37+
PRIMARY KEY (`ID_ASSOCIATION`)
38+
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci AUTO_INCREMENT=5 ;
39+
40+
--
41+
-- Contenu de la table `association`
42+
--
43+
44+
INSERT INTO `association` (`ID_ASSOCIATION`, `NOM`, `IMAGE`, `SITE`, `PRESIDENT`, `VICE_PRESIDENT`, `SECRETAIRE`, `TRESORIER`) VALUES
45+
(1, 'EPSILab', 'associations/epsilab.png', 'http://www.epsilab.net', 12, 33, 24, 23),
46+
(2, 'EPSINUX', 'associations/epsinux.png', 'http://www.epsinux.org', 4, 5, 13, 15),
47+
(3, 'EPSIGame', 'associations/epsigame.png', 'http://www.epsigame.org/', 3, 59, 51, 49),
48+
(4, 'EPSIMotion', 'associations/epsimotion.png', 'http://www.p0k3.fr', 17, 8, 27, 9);

‎database/MCD.mcd

805 KB
Binary file not shown.

0 commit comments

Comments
 (0)
This repository has been archived.