diff --git a/election.install b/election.install
index 965851c..5834647 100644
--- a/election.install
+++ b/election.install
@@ -60,11 +60,11 @@ function election_schema() {
         'default' => ELECTION_STATUS_CLOSED,
       ),
       'vopen_time' => array(
-        'description' => 'The Unix timestamp for when voting opens (if scheduled).',
+        'description' => 'The Unix timestamp for when voting opens (if scheduled). NULL means it is not scheduled.',
         'type' => 'int',
       ),
       'vclose_time' => array(
-        'description' => 'The Unix timestamp for when voting closes (if scheduled).',
+        'description' => 'The Unix timestamp for when voting closes (if scheduled). NULL means it is not scheduled.',
         'type' => 'int',
       ),
       'nstatus' => array(
@@ -80,15 +80,15 @@ function election_schema() {
         'default' => ELECTION_STATUS_CLOSED,
       ),
       'nopen_time' => array(
-        'description' => 'The Unix timestamp for when nominations open (if scheduled).',
+        'description' => 'The Unix timestamp for when nominations open (if scheduled). NULL means it is not scheduled.',
         'type' => 'int',
       ),
       'nclose_time' => array(
-        'description' => 'The Unix timestamp for when nominations close (if scheduled).',
+        'description' => 'The Unix timestamp for when nominations close (if scheduled). NULL means it is not scheduled.',
         'type' => 'int',
       ),
       'settings' => array(
-        'description' => 'A serialized array of any further settings for this election.',
+        'description' => 'A serialized array of any further settings for this election. NULL means there are no further settings.',
         'type' => 'blob',
         'size' => 'normal',
         'serialize' => TRUE,
diff --git a/election_candidate/election_candidate.install b/election_candidate/election_candidate.install
index 8c31a4b..2da87fc 100644
--- a/election_candidate/election_candidate.install
+++ b/election_candidate/election_candidate.install
@@ -64,7 +64,7 @@ function election_candidate_schema() {
         'default' => ELECTION_CANDIDATE_HOPEFUL,
       ),
       'uid' => array(
-        'description' => 'The {users}.uid of the candidate.',
+        'description' => 'The {users}.uid of the candidate. NULL means the candidate does not have a uid.',
         'type' => 'int',
         'unsigned' => TRUE,
       ),
@@ -140,7 +140,7 @@ function election_candidate_schema() {
         'description' => 'The exportable status of the entity.',
       ),
       'module' => array(
-        'description' => 'The name of the providing module if the entity has been defined in code.',
+        'description' => 'The name of the providing module if the entity has been defined in code. NULL means it is not defined in code.',
         'type' => 'varchar',
         'length' => 255,
       ),
@@ -148,7 +148,7 @@ function election_candidate_schema() {
         'type' => 'text',
         'size' => 'big',
         'serialize' => TRUE,
-        'description' => 'A serialized array of additional data related to this candidate type.',
+        'description' => 'A serialized array of additional data related to this candidate type. NULL means there is no additional data.',
       ),
     ),
     'primary key' => array('id'),
diff --git a/election_post/election_post.install b/election_post/election_post.install
index da2c8ba..33bf8a5 100644
--- a/election_post/election_post.install
+++ b/election_post/election_post.install
@@ -105,7 +105,7 @@ function election_post_schema() {
         'not null' => TRUE,
       ),
       'settings' => array(
-        'description' => 'A serialized array of any further settings for this post.',
+        'description' => 'A serialized array of any further settings for this post. NULL means there are no further settings.',
         'type' => 'blob',
         'size' => 'normal',
         'serialize' => TRUE,
diff --git a/election_vote/election_vote.install b/election_vote/election_vote.install
index 658986b..4d5067e 100644
--- a/election_vote/election_vote.install
+++ b/election_vote/election_vote.install
@@ -42,7 +42,7 @@ function election_vote_schema() {
       ),
       'answer' => array(
         'description' => sprintf(
-          'For referendums: the answer (no %d or yes %d).',
+          'For referendums: the answer (no %d or yes %d). NULL means it is not a referendum.',
           ELECTION_ANSWER_NO,
           ELECTION_ANSWER_YES
         ),
@@ -50,12 +50,12 @@ function election_vote_schema() {
         'size' => 'tiny',
       ),
       'candidate_id' => array(
-        'description' => 'For ranked elections: the candidate being ranked.',
+        'description' => 'For ranked elections: the candidate being ranked. NULL means it is not a ranked election.',
         'type' => 'int',
         'unsigned' => TRUE,
       ),
       'rank' => array(
-        'description' => 'For ranked elections: the rank of the candidate in the ballot.',
+        'description' => 'For ranked elections: the rank of the candidate in the ballot. NULL means it is not a ranked election.',
         'type' => 'int',
       ),
       'ron' => array(
@@ -120,7 +120,7 @@ function election_vote_schema() {
         'not null' => TRUE,
       ),
       'ip' => array(
-        'description' => 'The IP address of the voter (v4 or v6).',
+        'description' => 'The IP address of the voter (v4 or v6). NULL means the IP is not stored for anonimity.',
         'type' => 'varchar',
         'length' => 255,
       ),
