-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvoting.sql
More file actions
44 lines (35 loc) · 1 KB
/
voting.sql
File metadata and controls
44 lines (35 loc) · 1 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
-- phpMyAdmin SQL Dump
-- version 3.4.5
-- http://www.phpmyadmin.net
--
-- Host: localhost:3306
-- Erstellungszeit: 14. Jan 2013 um 16:08
-- Server Version: 5.0.51
-- PHP-Version: 5.3.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 utf8 */;
--
-- Datenbank: `floatec`
--
-- --------------------------------------------------------
--
-- Tabellenstruktur für Tabelle `voting`
--
CREATE TABLE IF NOT EXISTS `voting` (
`id` int(11) NOT NULL auto_increment,
`Frage` text NOT NULL,
`A1` text NOT NULL,
`A2` text NOT NULL,
`A3` text NOT NULL,
`A4` text NOT NULL,
`C1` int(11) NOT NULL,
`C2` int(11) NOT NULL,
`C3` int(11) NOT NULL,
`C4` int(11) NOT NULL,
`blind_mode` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;