Lines Matching defs:colref
203 'colref' => $column->getColref(),
218 * @param int $colref
220 protected function migrateSingleToMulti($table, $colref)
223 $sqlSelect = "SELECT pid, rev, published, col$colref AS value FROM data_$table WHERE latest = 1";
234 $colref,
247 $sqlInsert = "INSERT OR REPLACE INTO multi_$table (colref, pid, rev, published, row, value) VALUES $valueString"; // phpcs:ignore
260 $colref = count($this->oldschema->getColumns()) + 1;
278 if (!$this->addDataTableColumn($colref)) {
293 'colref' => $colref,
300 $colref++;
330 colref INTEGER NOT NULL,
338 PRIMARY KEY(colref, pid, rid, rev, row)