diff --git a/database/database.mysql b/database/database.mysql
index e11bf1e571953b1adcf3cea7be7a3c74f9ed32b4..362b7dff695e685212af9f986e5edd1309b667b7 100644
--- a/database/database.mysql
+++ b/database/database.mysql
@@ -8,19 +8,11 @@ CREATE TABLE affiliates (
   PRIMARY KEY (id)
 );
 
-CREATE TABLE sections (
-  name varchar(64) DEFAULT '' NOT NULL,
-  post tinyint(3) DEFAULT '0' NOT NULL,
-  dump tinyint(3) DEFAULT '0' NOT NULL,
-  timout tinyint(3) DEFAULT '0' NOT NULL,
-  status tinyint(2) DEFAULT '0' NOT NULL,
-  PRIMARY KEY (name)
-);
-
 CREATE TABLE blocks (
   name varchar(64) DEFAULT '' NOT NULL,
   module varchar(64) DEFAULT '' NOT NULL,
   offset tinyint(2) DEFAULT '0' NOT NULL,
+  status tinyint(2) DEFAULT '0' NOT NULL,
   weight tinyint(1) DEFAULT '0' NOT NULL,
   region tinyint(1) DEFAULT '0' NOT NULL,
   PRIMARY KEY (name)
@@ -120,6 +112,15 @@ CREATE TABLE modules (
   PRIMARY KEY (name)
 );
 
+CREATE TABLE sections (
+  name varchar(64) DEFAULT '' NOT NULL,
+  post tinyint(3) DEFAULT '0' NOT NULL,
+  dump tinyint(3) DEFAULT '0' NOT NULL,
+  timout tinyint(3) DEFAULT '0' NOT NULL,
+  status tinyint(2) DEFAULT '0' NOT NULL,
+  PRIMARY KEY (name)
+);
+
 CREATE TABLE stories (
   id int(11) DEFAULT '0' NOT NULL auto_increment,
   author int(6) DEFAULT '0' NOT NULL,
diff --git a/modules/section.module b/modules/section.module
index aa18e6720d7f419f5d9e91a98fdfd03336b7895e..adaaec524ffe0413f6560a258c88c1c00be4afd4 100644
--- a/modules/section.module
+++ b/modules/section.module
@@ -12,7 +12,8 @@
 
 function section_help() {
  ?>
-  under construction
+  <P>When submitting new stories, every story is assigned a section or category.  These sections can be maintained from the administration pages.</P>
+  <P>For moderation purpose, you can specify a post, dump and expiration thresholds for each available section according to type and urgency level a section.  Some section do not really "expire" and stay interesting and active as time passes by, whereas news-related stories are only considered "hot" over a short period of time.</P>
  <?
 }