Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Hacksaar
infoscreen
Commits
45a49d8e
Commit
45a49d8e
authored
Apr 19, 2014
by
Kevin
Browse files
SQL-Schema for messages
parent
fd943877
Changes
1
Hide whitespace changes
Inline
Side-by-side
protected/data/messages.sql
0 → 100644
View file @
45a49d8e
--
-- Tabellenstruktur für Tabelle `messages`
--
CREATE
TABLE
`messages`
(
`id`
int
(
11
)
NOT
NULL
AUTO_INCREMENT
,
`text`
text
COLLATE
utf8_bin
,
`created`
datetime
DEFAULT
NULL
,
`modified`
datetime
DEFAULT
NULL
,
`deleted`
datetime
DEFAULT
NULL
,
`board`
int
(
3
)
NOT
NULL
,
`infotype`
varchar
(
20
)
COLLATE
utf8_bin
DEFAULT
NULL
,
`published`
int
(
1
)
NOT
NULL
,
PRIMARY
KEY
(
`id`
)
)
ENGINE
=
InnoDB
DEFAULT
CHARSET
=
utf8
COLLATE
=
utf8_bin
AUTO_INCREMENT
=
0
;
Write
Preview
Supports
Markdown
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