Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
PHP-Chat
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
BA_SST
PHP-Chat
Commits
9d1ffa0d
Commit
9d1ffa0d
authored
Sep 07, 2016
by
Markus
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MySQL Dump der DB-Struktur
parent
f01af582
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
65 additions
and
0 deletions
+65
-0
chat.sql
chat.sql
+65
-0
No files found.
chat.sql
0 → 100644
View file @
9d1ffa0d
-- phpMyAdmin SQL Dump
-- version 4.0.10deb1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Sep 07, 2016 at 09:25 AM
-- Server version: 5.5.50-0ubuntu0.14.04.1
-- PHP Version: 5.5.9-1ubuntu4.19
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 */
;
--
-- Database: `chat`
--
-- --------------------------------------------------------
--
-- Table structure for table `chat`
--
CREATE
TABLE
IF
NOT
EXISTS
`chat`
(
`id`
int
(
11
)
NOT
NULL
AUTO_INCREMENT
,
`nachricht`
varchar
(
500
)
CHARACTER
SET
utf8
COLLATE
utf8_bin
NOT
NULL
,
`user_id`
int
(
11
)
NOT
NULL
DEFAULT
'0'
,
`userchange`
tinyint
(
1
)
NOT
NULL
DEFAULT
'0'
,
`hideuser`
tinyint
(
1
)
NOT
NULL
DEFAULT
'0'
,
`admin`
tinyint
(
1
)
NOT
NULL
DEFAULT
'0'
,
`chat_time`
int
(
11
)
NOT
NULL
DEFAULT
'0'
,
`hidden`
tinyint
(
1
)
NOT
NULL
DEFAULT
'0'
,
`privat`
int
(
11
)
NOT
NULL
,
PRIMARY
KEY
(
`id`
),
KEY
`id`
(
`id`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
utf8
AUTO_INCREMENT
=
1010
;
-- --------------------------------------------------------
--
-- Table structure for table `user`
--
CREATE
TABLE
IF
NOT
EXISTS
`user`
(
`id`
int
(
11
)
NOT
NULL
AUTO_INCREMENT
,
`name`
varchar
(
30
)
NOT
NULL
,
`pass`
varchar
(
64
)
NOT
NULL
,
`admin`
tinyint
(
1
)
NOT
NULL
DEFAULT
'0'
,
`online`
tinyint
(
1
)
NOT
NULL
DEFAULT
'0'
,
`chat`
int
(
11
)
NOT
NULL
DEFAULT
'0'
,
`refresh_time`
varchar
(
11
)
NOT
NULL
DEFAULT
'0'
,
PRIMARY
KEY
(
`id`
),
UNIQUE
KEY
`name`
(
`name`
),
UNIQUE
KEY
`id_2`
(
`id`
),
KEY
`id`
(
`id`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
utf8
AUTO_INCREMENT
=
25
;
/*!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 */
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment