Skip to content

Commit

Permalink
#35 : ajout du fichier d'ajout de table CMS seule
Browse files Browse the repository at this point in the history
  • Loading branch information
oceanBigOne committed Mar 15, 2017
1 parent 6bc3f84 commit 153195b
Showing 1 changed file with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions sql/feature-issue35-cms.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
-- phpMyAdmin SQL Dump
-- version 4.6.4
-- https://www.phpmyadmin.net/
--
-- Client : 127.0.0.1
-- Généré le : Mer 15 Mars 2017 à 21:46
-- Version du serveur : 5.7.14
-- Version de PHP : 5.6.25

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Base de données : `candidaturemavoix`
--

-- --------------------------------------------------------

--
-- Structure de la table `cms`
--

CREATE TABLE `cms` (
`id` int(11) NOT NULL,
`date_created` datetime NOT NULL,
`date_amended` datetime NOT NULL,
`date_deleted` datetime NOT NULL,
`ref` varchar(200) NOT NULL,
`comment` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Index pour les tables exportées
--

--
-- Index pour la table `cms`
--
ALTER TABLE `cms`
ADD PRIMARY KEY (`id`);

--
-- AUTO_INCREMENT pour les tables exportées
--

--
-- AUTO_INCREMENT pour la table `cms`
--
ALTER TABLE `cms`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;COMMIT;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;

0 comments on commit 153195b

Please sign in to comment.