linkchecker/config/create.sql

24 lines
608 B
MySQL
Raw Normal View History

-- 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
);