-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmysql_structure.sql
More file actions
36 lines (30 loc) · 910 Bytes
/
mysql_structure.sql
File metadata and controls
36 lines (30 loc) · 910 Bytes
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
-- phpMyAdmin SQL Dump
-- version 3.5.1
-- http://www.phpmyadmin.net
--
-- Client: localhost
-- Généré le: Dim 14 Octobre 2012 à 18:55
-- Version du serveur: 5.5.25
-- Version de PHP: 5.3.14
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
--
-- Base de données: `sshconfig_gen`
--
-- --------------------------------------------------------
--
-- Structure de la table `sg_hosts`
--
CREATE TABLE `sg_hosts` (
`id_host` tinyint(4) NOT NULL AUTO_INCREMENT,
`hostname` varchar(100) NOT NULL,
`id_zone` varchar(100) NOT NULL,
`id_infra` varchar(100) NOT NULL,
`id_srv` varchar(100) NOT NULL,
`user` varchar(100) NOT NULL,
`port` int(5) NOT NULL,
`identityfile` varchar(100) NOT NULL,
`proxycommand` varchar(100) NOT NULL,
PRIMARY KEY (`id_host`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=118 ;
-- --------------------------------------------------------