예제 #1
0
 private function getAccountTable($accountId)
 {
     $tableId = $this->getSysBucketId() . '.' . $accountId;
     $table = new Table($this->storageApi, $tableId, '', 'id', false, ',', '"', true);
     $table->setHeader(['id', 'name', 'query', 'outputTable', 'incremental', 'primaryKey', 'enabled']);
     return $table;
 }