Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
wantzel
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
9
Issues
9
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
La Quadrature du Net
rpteam
wantzel
Commits
4fd6065b
Commit
4fd6065b
authored
Feb 16, 2016
by
Mindiell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Showing
2 changed files
with
22 additions
and
0 deletions
+22
-0
create_mysql_tables.sql
create_mysql_tables.sql
+22
-0
create_sqlite_base.sql
create_sqlite_base.sql
+0
-0
No files found.
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
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