| 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 |
|
|---|
| 11 | SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
|
|---|
| 12 |
|
|---|
| 13 | --
|
|---|
| 14 | -- Databáze: `quests`
|
|---|
| 15 | --
|
|---|
| 16 |
|
|---|
| 17 | -- --------------------------------------------------------
|
|---|
| 18 |
|
|---|
| 19 | --
|
|---|
| 20 | -- Struktura tabulky `ajquests`
|
|---|
| 21 | --
|
|---|
| 22 |
|
|---|
| 23 | CREATE 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 |
|
|---|
| 40 | CREATE 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 |
|
|---|
| 58 | CREATE 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 |
|
|---|
| 74 | CREATE TABLE IF NOT EXISTS `var` (
|
|---|
| 75 | `Name` text NOT NULL,
|
|---|
| 76 | `Value` text NOT NULL
|
|---|
| 77 | ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|---|