3 -- http://www.phpmyadmin.net
6 -- Généré le : Dim 25 Décembre 2011 à 15:01
7 -- Version du serveur: 5.1.41
8 -- Version de PHP: 5.3.2-1ubuntu4.11
10 SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
13 -- Base de données: `mtweb`
16 -- --------------------------------------------------------
19 -- Structure de la table `mw_action_status`
22 CREATE TABLE IF NOT EXISTS `mw_action_status` (
23 `id` int(11) NOT NULL AUTO_INCREMENT,
24 `action` varchar(255) NOT NULL,
25 `id_status` int(11) NOT NULL,
27 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;
30 -- Contenu de la table `mw_action_status`
33 INSERT INTO `mw_action_status` (`id`, `action`, `id_status`) VALUES
37 (4, 'users/identification', 0);
39 -- --------------------------------------------------------
42 -- Structure de la table `mw_config`
45 CREATE TABLE IF NOT EXISTS `mw_config` (
46 `id` int(11) NOT NULL AUTO_INCREMENT,
47 `key` varchar(255) NOT NULL,
48 `value` text NOT NULL,
50 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=20 ;
53 -- Contenu de la table `mw_config`
56 INSERT INTO `mw_config` (`id`, `key`, `value`) VALUES
57 (1, 'site_name', 'mtweb'),
58 (2, 'max_list', '10'),
59 (3, 'description', ''),
61 (5, 'start_action', ''),
62 (6, 'contact_form', '0'),
65 (16, 'start_action_params', '');
67 -- --------------------------------------------------------
70 -- Structure de la table `mw_users`
73 CREATE TABLE IF NOT EXISTS `mw_users` (
74 `id` int(11) NOT NULL AUTO_INCREMENT,
75 `login` varchar(255) NOT NULL,
76 `password` varchar(255) NOT NULL,
77 `email` varchar(255) NOT NULL,
78 `status` int(11) NOT NULL,
80 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ;
83 -- Contenu de la table `mw_users`
86 INSERT INTO `mw_users` (`id`, `login`, `password`, `email`, `status`) VALUES
87 (1, 'admin', '25e4ee4e9229397b6b17776bfceaf8e7', 'admin@domain.tld', 1);
89 -- --------------------------------------------------------
92 -- Structure de la table `mw_user_status`
95 CREATE TABLE IF NOT EXISTS `mw_user_status` (
96 `id` int(11) NOT NULL AUTO_INCREMENT,
97 `nom` varchar(255) NOT NULL,
98 `creation_default` tinyint(4) NOT NULL,
100 ) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;
103 -- Contenu de la table `mw_user_status`
106 INSERT INTO `mw_user_status` (`id`, `nom`, `creation_default`) VALUES