forked from extern/egroupware
Merged the NNTP tables into the main create_tables.*
This commit is contained in:
parent
4a31ad9f48
commit
9f00336800
@ -168,3 +168,19 @@ create table webcal_entry_groups (
|
|||||||
groups varchar(255)
|
groups varchar(255)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
CREATE TABLE newsgroups (
|
||||||
|
con int(11) NOT NULL auto_increment,
|
||||||
|
name varchar(255) NOT NULL,
|
||||||
|
messagecount int(11) NOT NULL,
|
||||||
|
lastmessage int(11) NOT NULL,
|
||||||
|
active char DEFAULT 'N' NOT NULL,
|
||||||
|
lastread int(11),
|
||||||
|
PRIMARY KEY (con),
|
||||||
|
UNIQUE name (name)
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE users_newsgroups (
|
||||||
|
owner int(11) NOT NULL,
|
||||||
|
newsgroup int(11) NOT NULL
|
||||||
|
);
|
||||||
|
|
||||||
|
@ -161,4 +161,18 @@ create table webcal_entry_groups (
|
|||||||
groups varchar(255)
|
groups varchar(255)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
CREATE TABLE newsgroups (
|
||||||
|
con serial,
|
||||||
|
name varchar(255) NOT NULL,
|
||||||
|
messagecount int NOT NULL,
|
||||||
|
lastmessage int NOT NULL,
|
||||||
|
active char DEFAULT 'N' NOT NULL,
|
||||||
|
lastread int
|
||||||
|
);
|
||||||
|
|
||||||
|
CREATE TABLE users_newsgroups (
|
||||||
|
owner int NOT NULL,
|
||||||
|
newsgroup int NOT NULL
|
||||||
|
);
|
||||||
|
|
||||||
COMMIT;
|
COMMIT;
|
||||||
|
Loading…
Reference in New Issue
Block a user