mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-14 02:18:31 +02:00
Merged the NNTP tables into the main create_tables.*
This commit is contained in:
@ -168,3 +168,19 @@ create table webcal_entry_groups (
|
||||
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
|
||||
);
|
||||
|
||||
|
Reference in New Issue
Block a user