Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
La Quadrature du Net
rpteam
wantzel
Commits
4fd6065b
Commit
4fd6065b
authored
Feb 16, 2016
by
Mindiell
Browse files
Help to install and use wantzel as an autonomous bot, a minima for testing purpose.
parent
51505bea
Changes
2
Hide whitespace changes
Inline
Side-by-side
create_mysql_tables.sql
0 → 100644
View file @
4fd6065b
-- Run in a running instance of mysql
CREATE
TABLE
`presse`
(
`id`
int
(
10
)
unsigned
NOT
NULL
AUTO_INCREMENT
,
`url`
varchar
(
255
)
NOT
NULL
,
`cite`
tinyint
(
3
)
unsigned
NOT
NULL
,
`lang`
varchar
(
2
)
NOT
NULL
,
`published`
tinyint
(
3
)
unsigned
NOT
NULL
,
`datec`
datetime
NOT
NULL
,
`nid`
int
(
10
)
unsigned
NOT
NULL
,
`screenshot`
tinyint
(
3
)
unsigned
NOT
NULL
,
`title`
varchar
(
255
)
NOT
NULL
,
`fetched`
tinyint
(
4
)
NOT
NULL
,
`seemscite`
tinyint
(
4
)
NOT
NULL
,
`provenance`
varchar
(
128
)
NOT
NULL
,
`note`
tinyint
(
4
)
NOT
NULL
DEFAULT
'0'
COMMENT
'Note (urgence)'
,
`date_publi`
datetime
DEFAULT
NULL
,
`hat`
text
,
`media`
varchar
(
50
)
DEFAULT
NULL
,
PRIMARY
KEY
(
`id`
),
KEY
`note`
(
`note`
)
)
ENGINE
=
MyISAM
AUTO_INCREMENT
=
24233
DEFAULT
CHARSET
=
latin1
create_
data
base.sql
→
create_
sqlite_
base.sql
View file @
4fd6065b
File moved
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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