-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathst_bann.sql
More file actions
44 lines (35 loc) · 1.17 KB
/
st_bann.sql
File metadata and controls
44 lines (35 loc) · 1.17 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
-- phpMyAdmin SQL Dump
-- version 4.5.2
-- http://www.phpmyadmin.net
--
-- Client : 127.0.0.1
-- Généré le : Dim 15 Octobre 2017 à 10:47
-- Version du serveur : 5.7.9
-- Version de PHP : 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 */;
--
-- Base de données : `twicecast`
--
-- --------------------------------------------------------
--
-- Structure de la table `st_bann`
--
DROP TABLE IF EXISTS `st_bann`;
CREATE TABLE IF NOT EXISTS `st_bann` (
`id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
`userid` bigint(20) UNSIGNED NOT NULL,
`streamid` bigint(20) UNSIGNED NOT NULL,
`end` timestamp NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
--
-- Contenu de la table `st_bann`
--
/*!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 */;