- Updated database.mysql

3-00
Dries Buytaert 2001-07-08 15:01:37 +00:00
parent d3fc6962bc
commit 4ac70d708f
1 changed files with 28 additions and 5 deletions

View File

@ -31,15 +31,15 @@ CREATE TABLE book (
);
CREATE TABLE boxes (
id tinyint(4) DEFAULT '0' NOT NULL auto_increment,
subject varchar(64) DEFAULT '' NOT NULL,
content text,
bid tinyint(4) DEFAULT '0' NOT NULL auto_increment,
title varchar(64) DEFAULT '' NOT NULL,
body text,
info varchar(128) DEFAULT '' NOT NULL,
link varchar(128) DEFAULT '' NOT NULL,
type tinyint(2) DEFAULT '0' NOT NULL,
UNIQUE subject (subject),
UNIQUE subject (title),
UNIQUE info (info),
PRIMARY KEY (id)
PRIMARY KEY (bid)
);
CREATE TABLE bundle (
@ -50,6 +50,13 @@ CREATE TABLE bundle (
PRIMARY KEY (bid)
);
CREATE TABLE cache (
url varchar(255) DEFAULT '' NOT NULL,
data text NOT NULL,
timestamp int(11) DEFAULT '0' NOT NULL,
PRIMARY KEY (url)
);
CREATE TABLE category (
cid int(10) unsigned DEFAULT '0' NOT NULL auto_increment,
name varchar(32) DEFAULT '' NOT NULL,
@ -262,6 +269,11 @@ CREATE TABLE rating (
PRIMARY KEY (user)
);
CREATE TABLE referer (
url varchar(255) DEFAULT '' NOT NULL,
timestamp int(11) DEFAULT '0' NOT NULL
);
CREATE TABLE role (
rid int(10) unsigned DEFAULT '0' NOT NULL auto_increment,
name varchar(32) DEFAULT '' NOT NULL,
@ -270,6 +282,17 @@ CREATE TABLE role (
PRIMARY KEY (rid)
);
CREATE TABLE site (
sid int(10) unsigned DEFAULT '0' NOT NULL auto_increment,
title varchar(128) DEFAULT '' NOT NULL,
url varchar(255) DEFAULT '' NOT NULL,
size text NOT NULL,
timestamp int(11) DEFAULT '0' NOT NULL,
UNIQUE title (title),
UNIQUE url (url),
PRIMARY KEY (sid)
);
CREATE TABLE story (
lid int(10) unsigned DEFAULT '0' NOT NULL auto_increment,
nid int(10) unsigned DEFAULT '0' NOT NULL,