source: branches/old/sql/12-quests full.sql

Last change on this file was 12, checked in by george, 17 years ago

Přesun dat v sekci finance z PHP kódu do MySQL databáze wow tabulky finance.
Úprava informací o přispívání na stránce financí.
Přidání informace o operačním systému do sekce Server.
Založení složky sql pro ukládání aktualizací sql databáze.

File size: 1.9 KB
Line 
1-- phpMyAdmin SQL Dump
2-- version 2.11.0-beta1
3-- http://www.phpmyadmin.net
4--
5-- Poèítaè: localhost
6
7-- Vygenerováno: Sobota 11. srpna 2007, 01:45
8-- Verze MySQL: 5.0.37
9-- Verze PHP: 5.2.2
10
11SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
12
13--
14-- Databáze: `quests`
15--
16
17-- --------------------------------------------------------
18
19--
20-- Struktura tabulky `ajquests`
21--
22
23CREATE TABLE IF NOT EXISTS `ajquests` (
24 `entry` int(11) NOT NULL default '0',
25 `Title` text NOT NULL,
26 `Details` text NOT NULL,
27 `Objectives` text NOT NULL,
28 `OfferRewardText` text NOT NULL,
29 `RequestItemsText` text NOT NULL,
30 `State` int(11) NOT NULL default '0',
31 `User` text NOT NULL
32) ENGINE=MyISAM DEFAULT CHARSET=latin1;
33
34-- --------------------------------------------------------
35
36--
37-- Struktura tabulky `czquests`
38--
39
40CREATE TABLE IF NOT EXISTS `czquests` (
41 `entry` int(11) NOT NULL default '0',
42 `Title` text NOT NULL,
43 `Details` text NOT NULL,
44 `Objectives` text NOT NULL,
45 `OfferRewardText` text NOT NULL,
46 `RequestItemsText` text NOT NULL,
47 `State` int(11) NOT NULL default '0',
48 `User` text NOT NULL,
49 `complete` int(11) NOT NULL default '1'
50) ENGINE=MyISAM DEFAULT CHARSET=latin1;
51
52-- --------------------------------------------------------
53
54--
55-- Struktura tabulky `user`
56--
57
58CREATE TABLE IF NOT EXISTS `user` (
59 `user` text NOT NULL,
60 `pass` text NOT NULL,
61 `gm` int(11) NOT NULL default '0',
62 `LastIP` text NOT NULL,
63 `LastLogin` datetime NOT NULL default '0000-00-00 00:00:00',
64 `NumberTranslateQuests` int(11) NOT NULL default '0',
65 `Email` text NOT NULL
66) ENGINE=MyISAM DEFAULT CHARSET=latin1;
67
68-- --------------------------------------------------------
69
70--
71-- Struktura tabulky `var`
72--
73
74CREATE TABLE IF NOT EXISTS `var` (
75 `Name` text NOT NULL,
76 `Value` text NOT NULL
77) ENGINE=MyISAM DEFAULT CHARSET=latin1;
Note: See TracBrowser for help on using the repository browser.