-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwp (1).sql
More file actions
63 lines (49 loc) · 1.49 KB
/
wp (1).sql
File metadata and controls
63 lines (49 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
-- phpMyAdmin SQL Dump
-- version 4.6.5.2
-- https://www.phpmyadmin.net/
--
-- Client : 127.0.0.1
-- Généré le : Mer 13 Septembre 2017 à 16:21
-- Version du serveur : 10.1.21-MariaDB
-- Version de PHP : 7.1.1
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
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 : `wp`
--
-- --------------------------------------------------------
--
-- Structure de la table `wp_transpo_authors`
--
CREATE TABLE `wp_transpo_authors` (
`id` int(11) NOT NULL,
`author_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Structure de la table `wp_transpo_news`
--
CREATE TABLE `wp_transpo_news` (
`news_id` int(11) NOT NULL,
`old_news_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Index pour les tables exportées
--
--
-- Index pour la table `wp_transpo_authors`
--
ALTER TABLE `wp_transpo_authors`
ADD PRIMARY KEY (`id`,`author_id`);
--
-- Index pour la table `wp_transpo_news`
--
ALTER TABLE `wp_transpo_news`
ADD PRIMARY KEY (`news_id`,`old_news_id`);
/*!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 */;