install/schemas/postgresql_stage2.sql
changeset 348 87e08a6e4fec
child 349 fdaf9070566c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/install/schemas/postgresql_stage2.sql	Wed Jan 16 13:55:49 2008 -0500
@@ -0,0 +1,337 @@
+-- Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
+-- Version 1.0.2 (Coblynau)
+-- Copyright (C) 2006-2007 Dan Fuhry
+
+-- This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
+-- as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
+
+-- This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
+-- warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
+
+-- mysql_stage2.sql - MySQL installation schema, main payload
+
+CREATE TABLE {{TABLE_PREFIX}}categories(
+  page_id varchar(64),
+  namespace varchar(64),
+  category_id varchar(64)
+);
+
+CREATE TABLE {{TABLE_PREFIX}}comments(
+  comment_id SERIAL,
+  page_id text,
+  namespace text,
+  subject text,
+  comment_data text,
+  name text,
+  approved smallint default 1,
+  user_id int NOT NULL DEFAULT -1,
+  time int NOT NULL DEFAULT 0,
+  PRIMARY KEY ( comment_id )
+);
+
+CREATE TABLE {{TABLE_PREFIX}}logs(
+  log_type varchar(16),
+  action varchar(16),
+  time_id int NOT NULL default '0',
+  date_string varchar(63),
+  page_id text,
+  namespace text,
+  page_text text,
+  char_tag varchar(40),
+  author varchar(63),
+  edit_summary text,
+  minor_edit smallint
+);
+
+CREATE TABLE {{TABLE_PREFIX}}page_text(
+  page_id varchar(255),
+  namespace varchar(16) NOT NULL default 'Article',
+  page_text text,
+  char_tag varchar(63)
+);
+
+CREATE TABLE {{TABLE_PREFIX}}pages(
+  page_order int,
+  name varchar(255),
+  urlname varchar(255),
+  namespace varchar(16) NOT NULL default 'Article',
+  special smallint default '0',
+  visible smallint default '1',
+  comments_on smallint default '1',
+  protected smallint NOT NULL DEFAULT 0,
+  wiki_mode smallint NOT NULL DEFAULT 2,
+  delvotes int NOT NULL default 0,
+  password varchar(40) NOT NULL DEFAULT '',
+  delvote_ips text DEFAULT NULL
+);
+
+CREATE TABLE {{TABLE_PREFIX}}session_keys(
+  session_key varchar(32),
+  salt varchar(32),
+  user_id int,
+  auth_level smallint NOT NULL default '0',
+  source_ip varchar(10) default '0x7f000001',
+  time bigint default '0'
+);
+
+CREATE TABLE {{TABLE_PREFIX}}themes(
+  theme_id varchar(63),
+  theme_name text,
+  theme_order smallint NOT NULL default '1',
+  default_style varchar(63) NOT NULL DEFAULT '',
+  enabled smallint NOT NULL default '1'
+);
+
+CREATE TABLE {{TABLE_PREFIX}}users(
+  user_id SERIAL,
+  username text,
+  password varchar(255),
+  email text,
+  real_name text,
+  user_level smallint NOT NULL default 2,
+  theme varchar(64) NOT NULL default 'bleu.css',
+  style varchar(64) NOT NULL default 'default',
+  signature text,
+  reg_time int NOT NULL DEFAULT 0,
+  account_active smallint NOT NULL DEFAULT 0,
+  activation_key varchar(40) NOT NULL DEFAULT 0,
+  old_encryption smallint NOT NULL DEFAULT 0,
+  temp_password text,
+  temp_password_time int NOT NULL DEFAULT 0,
+  user_coppa smallint NOT NULL DEFAULT 0,
+  PRIMARY KEY  (user_id)
+);
+
+CREATE TABLE {{TABLE_PREFIX}}users_extra(
+  user_id int NOT NULL,
+  user_aim varchar(63),
+  user_yahoo varchar(63),
+  user_msn varchar(255),
+  user_xmpp varchar(255),
+  user_homepage text,
+  user_location text,
+  user_job text,
+  user_hobbies text,
+  email_public smallint NOT NULL DEFAULT 0,
+  PRIMARY KEY ( user_id ) 
+);
+
+CREATE TABLE {{TABLE_PREFIX}}banlist(
+  ban_id SERIAL,
+  ban_type smallint,
+  ban_value varchar(64),
+  is_regex smallint DEFAULT 0,
+  reason text,
+  PRIMARY KEY ( ban_id ) 
+);
+
+CREATE TABLE {{TABLE_PREFIX}}files(
+  file_id SERIAL,
+  time_id int NOT NULL,
+  page_id varchar(63) NOT NULL,
+  filename varchar(127) default NULL,
+  size bigint NOT NULL,
+  mimetype varchar(63) default NULL,
+  file_extension varchar(8) default NULL,
+  file_key varchar(32) NOT NULL,
+  PRIMARY KEY (file_id) 
+);
+
+CREATE TABLE {{TABLE_PREFIX}}buddies(
+  buddy_id SERIAL,
+  user_id int,
+  buddy_user_id int,
+  is_friend smallint NOT NULL default '1',
+  PRIMARY KEY  (buddy_id) 
+);
+
+CREATE TABLE {{TABLE_PREFIX}}privmsgs(
+  message_id SERIAL,
+  message_from varchar(63),
+  message_to varchar(255),
+  date int,
+  subject varchar(63),
+  message_text text,
+  folder_name varchar(63),
+  message_read smallint NOT NULL DEFAULT 0,
+  PRIMARY KEY  (message_id) 
+);
+
+CREATE TABLE {{TABLE_PREFIX}}sidebar(
+  item_id SERIAL,
+  item_order smallint NOT NULL DEFAULT 0,
+  item_enabled smallint NOT NULL DEFAULT 1,
+  sidebar_id smallint NOT NULL DEFAULT 1,
+  block_name varchar(63) NOT NULL,
+  block_type smallint NOT NULL DEFAULT 0,
+  block_content text,
+  PRIMARY KEY ( item_id )
+);
+
+CREATE TABLE {{TABLE_PREFIX}}hits(
+  hit_id SERIAL,
+  username varchar(63) NOT NULL,
+  time int NOT NULL DEFAULT 0,
+  page_id varchar(63),
+  namespace varchar(63),
+  PRIMARY KEY ( hit_id ) 
+);
+
+CREATE TABLE {{TABLE_PREFIX}}search_index(
+  word varchar(64) NOT NULL,
+  page_names text,
+  PRIMARY KEY ( word ) 
+);
+
+CREATE TABLE {{TABLE_PREFIX}}groups(
+  group_id SERIAL,
+  group_name varchar(64),
+  group_type smallint NOT NULL DEFAULT 1,
+  PRIMARY KEY ( group_id ),
+  system_group smallint NOT NULL DEFAULT 0 
+);
+
+CREATE TABLE {{TABLE_PREFIX}}group_members(
+  member_id SERIAL,
+  group_id int NOT NULL,
+  user_id int NOT NULL,
+  is_mod smallint NOT NULL DEFAULT 0,
+  pending smallint NOT NULL DEFAULT 0,
+  PRIMARY KEY ( member_id ) 
+);
+
+CREATE TABLE {{TABLE_PREFIX}}acl(
+  rule_id SERIAL,
+  target_type smallint NOT NULL,
+  target_id int NOT NULL,
+  page_id varchar(255),
+  namespace varchar(24),
+  rules text,
+  PRIMARY KEY ( rule_id ) 
+);
+
+-- Added in 1.0.1
+
+CREATE TABLE {{TABLE_PREFIX}}page_groups(
+  pg_id SERIAL,
+  pg_type smallint NOT NULL DEFAULT 1,
+  pg_name varchar(255) NOT NULL DEFAULT '',
+  pg_target varchar(255) DEFAULT NULL,
+  PRIMARY KEY ( pg_id )
+);
+
+-- Added in 1.0.1
+
+CREATE TABLE {{TABLE_PREFIX}}page_group_members(
+  pg_member_id SERIAL,
+  pg_id int NOT NULL,
+  page_id varchar(63) NOT NULL,
+  namespace varchar(63) NOT NULL DEFAULT 'Article',
+  PRIMARY KEY ( pg_member_id )
+);
+
+-- Added in 1.0.1
+
+CREATE TABLE {{TABLE_PREFIX}}tags(
+  tag_id SERIAL,
+  tag_name varchar(63) NOT NULL DEFAULT 'bla',
+  page_id varchar(255) NOT NULL,
+  namespace varchar(255) NOT NULL,
+  user_id int NOT NULL DEFAULT 1,
+  PRIMARY KEY ( tag_id )
+);
+
+-- Added in 1.1.1
+
+CREATE TABLE {{TABLE_PREFIX}}lockout(
+  id SERIAL,
+  ipaddr varchar(40) NOT NULL,
+  action varchar(20) NOT NULL DEFAULT 'credential',
+  timestamp int NOT NULL DEFAULT 0,
+  CHECK ( action IN ('credential', 'level') )
+);
+
+-- Added in 1.1.1
+
+CREATE TABLE {{TABLE_PREFIX}}language(
+  lang_id SERIAL,
+  lang_code varchar(16) NOT NULL,
+  lang_name_default varchar(64) NOT NULL,
+  lang_name_native varchar(64) NOT NULL,
+  last_changed int NOT NULL DEFAULT 0
+);
+
+-- Added in 1.1.1
+
+CREATE TABLE {{TABLE_PREFIX}}language_strings(
+  string_id SERIAL,
+  lang_id int NOT NULL,
+  string_category varchar(32) NOT NULL,
+  string_name varchar(64) NOT NULL,
+  string_content text NOT NULL
+);
+
+DELETE FROM {{TABLE_PREFIX}}config;
+
+INSERT INTO {{TABLE_PREFIX}}config(config_name, config_value) VALUES
+  ('site_name', '{{SITE_NAME}}'),
+  ('main_page', 'Main_Page'),
+  ('site_desc', '{{SITE_DESC}}'),
+  ('wiki_mode', '{{WIKI_MODE}}'),
+  ('wiki_edit_notice', '0'),
+  ('sflogo_enabled', '0'),
+  ('sflogo_groupid', ''),
+  ('sflogo_type', '1'),
+  ('w3c_vh32', '0'),
+  ('w3c_vh40', '0'),
+  ('w3c_vh401', '0'),
+  ('w3c_vxhtml10', '0'),
+  ('w3c_vxhtml11', '0'),
+  ('w3c_vcss', '0'),
+  ('approve_comments', '0'),
+  ('enable_comments', '1'),
+  ('plugin_SpecialAdmin.php', '1'),
+  ('plugin_SpecialPageFuncs.php', '1'),
+  ('plugin_SpecialUserFuncs.php', '1'),
+  ('plugin_SpecialCSS.php', '1'),
+  ('copyright_notice', '{{COPYRIGHT}}'),
+  ('wiki_edit_notice_text', '== Why can I edit this page? ==\n\nEveryone can edit almost any page in this website. This concept is called a wiki. It gives everyone the opportunity to make a change for the best. While some spam and vandalism may occur, it is believed that most contributions will be legitimate and helpful.\n\nFor security purposes, a history of all page edits is kept, and administrators are able to restore vandalized or spammed pages with just a few clicks.'),
+  ('cache_thumbs', '{{ENABLE_CACHE}}'),
+  ('max_file_size', '256000'),('enano_version', '{{VERSION}}'),( 'allowed_mime_types', 'cbf:len=185;crc=55fb6f14;data=0[1],1[4],0[3],1[1],0[22],1[1],0[16],1[3],0[16],1[1],0[1],1[2],0[6],1[1],0[1],1[1],0[4],1[2],0[3],1[1],0[48],1[2],0[2],1[1],0[4],1[1],0[37]|end' ),
+  ('contact_email', '{{ADMIN_EMAIL}}'),
+  ('powered_btn', '1');
+
+INSERT INTO {{TABLE_PREFIX}}page_text(page_id, namespace, page_text, char_tag) VALUES
+  ('Main_Page', 'Article', '=== Enano has been successfully installed and is working. ===\n\nIf you can see this message, it means that you\'ve finished the Enano setup process and are ready to start building your website. Congratulations!\n\nTo edit this front page, click the Log In button to the left, enter the credentials you provided during the installation, and click the Edit This Page button that appears on the blue toolbar just above this text. You can also [http://docs.enanocms.org/Help:2.4 learn more] about editing pages.\n\nTo create more pages, use the Create a Page button to the left. If you enabled wiki mode, you don\'t have to log in first, however your IP address will be shown in the page history.\n\nVisit the [http://docs.enanocms.org/Help:Contents Enano documentation project website] to learn more about administering your site effectively and keeping things secure.\n\n\'\'\'NOTE:\'\'\' You\'ve just installed an unstable version of Enano. This release is completely unsupported and may contain security issues or serious usability bugs. You should not use this release on a production website. The Enano team will not provide any type of support at all for this experimental release.', '');
+
+INSERT INTO {{TABLE_PREFIX}}pages(page_order, name, urlname, namespace, special, visible, comments_on, protected, delvotes, delvote_ips) VALUES
+  (NULL, 'Main Page', 'Main_Page', 'Article', 0, 1, 1, 1, 0, '');
+
+INSERT INTO {{TABLE_PREFIX}}themes(theme_id, theme_name, theme_order, default_style, enabled) VALUES
+  ('oxygen', 'Oxygen', 1, 'bleu.css', 1),
+  ('stpatty', 'St. Patty', 2, 'shamrock.css', 1);
+
+INSERT INTO {{TABLE_PREFIX}}users(user_id, username, password, email, real_name, user_level, theme, style, signature, reg_time, account_active) VALUES
+  (1, 'Anonymous', 'invalid-pass-hash', 'anonspam@enanocms.org', 'None', 1, 'oxygen', 'bleu', '', 0, 0),
+  (2, '{{ADMIN_USER}}', '{{ADMIN_PASS}}', '{{ADMIN_EMAIL}}', '{{REAL_NAME}}', 9, 'oxygen', 'bleu', '', {{UNIX_TIME}}, 1);
+  
+INSERT INTO {{TABLE_PREFIX}}users_extra(user_id) VALUES
+  (2);
+
+INSERT INTO {{TABLE_PREFIX}}groups(group_id,group_name,group_type,system_group) VALUES(1, 'Everyone', 3, 1),
+  (2,'Administrators',3,1),
+  (3,'Moderators',3,1);
+
+INSERT INTO {{TABLE_PREFIX}}group_members(group_id,user_id,is_mod) VALUES(2, 2, 1);
+
+INSERT INTO {{TABLE_PREFIX}}acl(target_type,target_id,page_id,namespace,rules) VALUES
+  (1,2,NULL,NULL,'read=4;post_comments=4;edit_comments=4;edit_page=4;view_source=4;mod_comments=4;history_view=4;history_rollback=4;history_rollback_extra=4;protect=4;rename=4;clear_logs=4;vote_delete=4;vote_reset=4;delete_page=4;tag_create=4;tag_delete_own=4;tag_delete_other=4;set_wiki_mode=4;password_set=4;password_reset=4;mod_misc=4;edit_cat=4;even_when_protected=4;upload_files=4;upload_new_version=4;create_page=4;php_in_pages={{ADMIN_EMBED_PHP}};edit_acl=4;'),
+  (1,3,NULL,NULL,'read=4;post_comments=4;edit_comments=4;edit_page=4;view_source=4;mod_comments=4;history_view=4;history_rollback=4;history_rollback_extra=4;protect=4;rename=3;clear_logs=2;vote_delete=4;vote_reset=4;delete_page=4;set_wiki_mode=2;password_set=2;password_reset=2;mod_misc=2;edit_cat=4;even_when_protected=4;upload_files=2;upload_new_version=3;create_page=3;php_in_pages=2;edit_acl=2;');
+
+INSERT INTO {{TABLE_PREFIX}}sidebar(item_id, item_order, sidebar_id, block_name, block_type, block_content) VALUES
+  (1, 1, 1, '{lang:sidebar_title_navigation}', 1, '[[Main_Page|{lang:sidebar_btn_home}]]'),
+  (2, 2, 1, '{lang:sidebar_title_tools}', 1, '[[$NS_SPECIAL$CreatePage|{lang:sidebar_btn_createpage}]]\n[[$NS_SPECIAL$UploadFile|{lang:sidebar_btn_uploadfile}]]\n[[$NS_SPECIAL$SpecialPages|{lang:sidebar_btn_specialpages}]]\n{if auth_admin}\n$ADMIN_LINK$\n[[$NS_SPECIAL$EditSidebar|{lang:sidebar_btn_editsidebar}]]\n{/if}'),
+  (3, 3, 1, '$USERNAME$', 1, '[[$NS_USER$$USERNAME$|{lang:sidebar_btn_userpage}]]\n[[$NS_SPECIAL$Contributions/$USERNAME$|{lang:sidebar_btn_mycontribs}]]\n{if user_logged_in}\n[[$NS_SPECIAL$Preferences|{lang:sidebar_btn_preferences}]]\n[[$NS_SPECIAL$PrivateMessages|{lang:sidebar_btn_privatemessages}]]\n[[$NS_SPECIAL$Usergroups|{lang:sidebar_btn_groupcp}]]\n$THEME_LINK$\n{/if}\n{if user_logged_in}\n$LOGOUT_LINK$\n{else}\n[[$NS_SPECIAL$Register|{lang:sidebar_btn_register}]]\n$LOGIN_LINK$\n[[$NS_SPECIAL$Login/$NS_SPECIAL$PrivateMessages|{lang:sidebar_btn_privatemessages}]]\n{/if}'),
+  (4, 4, 1, '{lang:sidebar_title_search}', 1, '<div class="slideblock2" style="padding: 0px;"><form action="$CONTENTPATH$$NS_SPECIAL$Search" method="get" style="padding: 0; margin: 0;"><p><input type="hidden" name="title" value="$NS_SPECIAL$Search" />$INPUT_AUTH$<input name="q" alt="Search box" type="text" size="10" style="width: 70%" /> <input type="submit" value="{lang:sidebar_btn_search_go}" style="width: 20%" /></p></form></div>'),
+  (5, 2, 2, '{lang:sidebar_title_links}', 4, 'Links');
+