fully implemented conference membership management and delete conference -
now almost all the conference functionality is in place
This commit is contained in:
@@ -35,7 +35,10 @@ USE venice;
|
||||
# in the XML config file. This table has ONLY ONE ROW!
|
||||
CREATE TABLE globals (
|
||||
posts_per_page INT NOT NULL,
|
||||
old_posts_at_top INT NOT NULL
|
||||
old_posts_at_top INT NOT NULL,
|
||||
max_search_page INT NOT NULL,
|
||||
max_sig_mbr_page INT NOT NULL,
|
||||
max_conf_mbr_page INT NOT NULL
|
||||
);
|
||||
|
||||
# The audit records table. Most "major" events add a record to this table.
|
||||
@@ -429,6 +432,7 @@ INSERT INTO refaudit (type, descr) VALUES
|
||||
(312, 'Scribble Message'),
|
||||
(313, 'Nuke Message'),
|
||||
(314, 'Upload Message Attachment'),
|
||||
(315, 'Delete Conference'),
|
||||
(9999999, 'DUMMY');
|
||||
|
||||
# The ISO 3166 two-letter country codes. Source is
|
||||
@@ -1291,8 +1295,8 @@ INSERT INTO refsigftr (ftr_code, is_default, is_locked, is_hidden, require_read,
|
||||
##############################################################################
|
||||
|
||||
# Initialize the system globals table.
|
||||
INSERT INTO globals (posts_per_page, old_posts_at_top)
|
||||
VALUES (20, 2);
|
||||
INSERT INTO globals (posts_per_page, old_posts_at_top, max_search_page, max_sig_mbr_page, max_conf_mbr_page)
|
||||
VALUES (20, 2, 20, 50, 50);
|
||||
|
||||
# Add the 'Anonymous Honyak' user to the users table.
|
||||
# (Do 'SELECT * FROM users WHERE is_anon = 1' to retrieve the AC user details.)
|
||||
|
||||
Reference in New Issue
Block a user