/**
  * Hook for ensuring our tables are created
  *
  * Ensures the fave_tally table is there and has the right columns
  *
  * @return boolean hook return
  */
 function onCheckSchema()
 {
     $schema = Schema::get();
     // For storing total number of times a notice has been faved
     $schema->ensureTable('fave_tally', Fave_tally::schemaDef());
     return true;
 }