tableTaskRunsSql() public static method

returns query for TaskRunInterface table
public static tableTaskRunsSql ( ) : string
return string
 public function up()
 {
     $this->db->createCommand(\mult1mate\crontab\DbHelper::tableTasksSql())->execute();
     $this->db->createCommand(\mult1mate\crontab\DbHelper::tableTaskRunsSql())->execute();
 }
Ejemplo n.º 2
0
 public function testTableTaskRunsSql()
 {
     $sql = DbHelper::tableTaskRunsSql();
     $this->assertTrue(is_string($sql));
 }