-
Notifications
You must be signed in to change notification settings - Fork 0
/
items.sql
70 lines (58 loc) · 1.97 KB
/
items.sql
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
-- phpMyAdmin SQL Dump
-- version 5.1.0
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: May 22, 2022 at 07:26 AM
-- Server version: 10.4.19-MariaDB
-- PHP Version: 8.0.6
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
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 */;
--
-- Database: `tera`
--
-- --------------------------------------------------------
--
-- Table structure for table `items`
--
CREATE TABLE `items` (
`id` int(11) NOT NULL,
`category` varchar(20) NOT NULL,
`icon` varchar(60) NOT NULL,
`name` varchar(40) NOT NULL,
`grade` int(1) NOT NULL,
`level` int(2) NOT NULL,
`classes` varchar(30) NOT NULL,
`races` varchar(10) NOT NULL,
`gender` varchar(1) NOT NULL DEFAULT '',
`obtainable` int(1) NOT NULL,
`tradable` int(1) NOT NULL,
`dyeable` int(1) NOT NULL,
`period` int(11) NOT NULL DEFAULT 0,
`periodByWebAdmin` int(1) NOT NULL DEFAULT 0,
`name_de` varchar(100) NOT NULL DEFAULT '',
`name_en` varchar(100) NOT NULL DEFAULT ''
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `items`
--
INSERT INTO `items` (`id`, `category`, `icon`, `name`, `grade`, `level`, `classes`, `races`, `gender`, `obtainable`, `tradable`, `dyeable`, `period`, `periodByWebAdmin`, `name_de`, `name_en`) VALUES
(1, 'fabrication', 'icon_items/artisan_potion_tex', 'service_item_01', 1, 1, '', '', '', 1, 0, 0, 0, 0, 'Velika Mitternachts Öl', 'Velika Midnight Oil');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `items`
--
ALTER TABLE `items`
ADD PRIMARY KEY (`id`),
ADD KEY `category` (`category`);
COMMIT;
/*!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 */;