Created
December 21, 2017 08:42
-
-
Save akroii/74b8e41c22e2c360eb4f2d2bc4210f64 to your computer and use it in GitHub Desktop.
form_contact.sql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- phpMyAdmin SQL Dump | |
| -- version 4.7.3 | |
| -- https://www.phpmyadmin.net/ | |
| -- | |
| -- Host: localhost:8889 | |
| -- Erstellungszeit: 21. Dez 2017 um 09:42 | |
| -- Server-Version: 5.6.35 | |
| -- PHP-Version: 7.1.8 | |
| 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 */; | |
| -- | |
| -- Datenbank: `schmidt` | |
| -- | |
| -- -------------------------------------------------------- | |
| -- | |
| -- Tabellenstruktur für Tabelle `form_contact` | |
| -- | |
| CREATE TABLE `form_contact` ( | |
| `name` varchar(255) NOT NULL, | |
| `surname` varchar(255) NOT NULL, | |
| `email` varchar(255) NOT NULL, | |
| `message` text NOT NULL, | |
| `date` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, | |
| `ID` int(11) NOT NULL | |
| ) ENGINE=InnoDB DEFAULT CHARSET=utf8; | |
| -- | |
| -- Daten für Tabelle `form_contact` | |
| -- | |
| INSERT INTO `form_contact` (`name`, `surname`, `email`, `message`, `date`, `ID`) VALUES | |
| ('xxx', 'xxxx', '[email protected]', '', '2017-10-30 08:44:28', 1), | |
| ('a', 'a', '[email protected]', '', '2017-10-30 13:39:35', 2); | |
| -- | |
| -- Indizes der exportierten Tabellen | |
| -- | |
| -- | |
| -- Indizes für die Tabelle `form_contact` | |
| -- | |
| ALTER TABLE `form_contact` | |
| ADD PRIMARY KEY (`ID`); | |
| -- | |
| -- AUTO_INCREMENT für exportierte Tabellen | |
| -- | |
| -- | |
| -- AUTO_INCREMENT für Tabelle `form_contact` | |
| -- | |
| ALTER TABLE `form_contact` | |
| MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; | |
| /*!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 */; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment