Skip to content

Instantly share code, notes, and snippets.

@radarin
Created November 12, 2017 20:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save radarin/1516e417366d4ea3fdf8ccce4b817f96 to your computer and use it in GitHub Desktop.
Save radarin/1516e417366d4ea3fdf8ccce4b817f96 to your computer and use it in GitHub Desktop.
SQL-Dump
-- phpMyAdmin SQL Dump
-- version 4.6.6
-- Erstellungszeit: 12. Nov 2017 um 20:06
-- PHP-Version: 5.6.32
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
-- Datenbank: `user_mysqldb`
-- Tabellenstruktur für Tabelle `wp_ahm_download_stats`
CREATE TABLE `wp_ahm_download_stats` (
`id` int(11) NOT NULL,
`pid` int(11) NOT NULL,
`uid` int(11) NOT NULL,
`oid` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`year` int(4) NOT NULL,
`month` int(2) NOT NULL,
`day` int(2) NOT NULL,
`timestamp` int(11) NOT NULL,
`ip` varchar(20) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- Daten für Tabelle `wp_ahm_download_stats`
INSERT INTO `wp_ahm_download_stats` (`id`, `pid`, `uid`, `oid`, `year`, `month`, `day`, `timestamp`, `ip`) VALUES
(1, 877, 0, '', 2017, 10, 25, 1508928859, '95.109.102.124'),
(2, 877, 0, '', 2017, 10, 26, 1509020261, '91.64.194.67');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment