mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-18 23:10:32 +00:00
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@1362 e7d03fd6-7b0d-0410-9947-9c21f3af8025
24 lines
633 B
SQL
24 lines
633 B
SQL
-- tested with postgresql
|
|
-- you can add a unique sequence id to the table if you want
|
|
|
|
drop table linksdb;
|
|
|
|
create table linksdb (
|
|
urlname varchar(50) not null,
|
|
recursionlevel int not null,
|
|
parentname varchar(50),
|
|
baseref varchar(50),
|
|
errorstring varchar(50),
|
|
validstring varchar(50),
|
|
warningstring varchar(50),
|
|
infostring varchar(150),
|
|
valid int,
|
|
url varchar(50),
|
|
line int,
|
|
col int,
|
|
name varchar(50),
|
|
checktime int,
|
|
dltime int,
|
|
dlsize int,
|
|
cached int
|
|
);
|