mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-17 06:20:27 +00:00
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3634 e7d03fd6-7b0d-0410-9947-9c21f3af8025
23 lines
608 B
SQL
23 lines
608 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(256) not null,
|
|
recursionlevel int not null,
|
|
parentname varchar(256),
|
|
baseref varchar(256),
|
|
valid int,
|
|
result varchar(256),
|
|
warning varchar(512),
|
|
info varchar(512),
|
|
url varchar(256),
|
|
line int,
|
|
col int,
|
|
name varchar(256),
|
|
checktime int,
|
|
dltime int,
|
|
dlsize int,
|
|
cached int
|
|
);
|