Example #1
0
 /**
  * Create triggers for the given tables.
  * @param array $tables
  */
 public function createTriggers(array $tables)
 {
     foreach ($tables as $table) {
         $this->dbms->createTrigger($table);
     }
 }