-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanual_install_mysql.sql
More file actions
91 lines (76 loc) · 2.06 KB
/
manual_install_mysql.sql
File metadata and controls
91 lines (76 loc) · 2.06 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# phpMyAdmin SQL Dump
# version 2.5.2
# http://www.phpmyadmin.net
#
# Host: localhost
# Generation Time: Mar 23, 2004 at 03:30 PM
# Server version: 4.0.15
# PHP Version: 4.2.3
#
# Database : `qdbs`
#
# --------------------------------------------------------
#
# Table structure for table `admins`
#
# Creation: Sep 21, 2003 at 08:25 PM
# Last update: Nov 27, 2003 at 10:59 PM
#
CREATE TABLE `admins` (
`username` varchar(16) NOT NULL default '',
`password` text NOT NULL,
`level` char(1) NOT NULL default '1',
`ip` text NOT NULL,
`id` int(11) NOT NULL auto_increment,
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;
# --------------------------------------------------------
#
# Table structure for table `queue`
#
# Creation: Sep 12, 2003 at 10:56 PM
# Last update: Jan 05, 2004 at 04:25 PM
#
CREATE TABLE `queue` (
`id` int(11) NOT NULL auto_increment,
`quote` longtext NOT NULL,
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;
# --------------------------------------------------------
#
# Table structure for table `quotes`
#
# Creation: Sep 12, 2003 at 10:56 PM
# Last update: Mar 13, 2004 at 03:59 AM
#
CREATE TABLE `quotes` (
`id` int(11) NOT NULL auto_increment,
`quote` longtext NOT NULL,
`rating` int(11) NOT NULL default '0',
PRIMARY KEY (`id`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;
# --------------------------------------------------------
#
# Table structure for table `settings`
#
# Creation: Sep 21, 2003 at 12:15 AM
# Last update: Sep 21, 2003 at 03:55 PM
#
CREATE TABLE `settings` (
`template` text NOT NULL,
`heading` varchar(80) NOT NULL default '',
`qlimit` int(11) NOT NULL default '0',
`title` varchar(80) NOT NULL default '',
`style` text NOT NULL
) TYPE=MyISAM;
# --------------------------------------------------------
#
# Table structure for table `votes`
#
# Creation: Sep 13, 2003 at 11:08 PM
# Last update: Mar 13, 2004 at 03:59 AM
#
CREATE TABLE `votes` (
`id` int(11) NOT NULL default '0',
`ip` text NOT NULL
) TYPE=MyISAM;