Skip to content

Commit

Permalink
Reduce index size for tables, as it causes issues in some mysql confi…
Browse files Browse the repository at this point in the history
…gurations. (#247)
  • Loading branch information
fmizzell authored Nov 8, 2019
1 parent e801461 commit 2eabfc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/custom/dkan_harvest/src/Storage/DatabaseTable.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ protected function primaryKey() {
private function setOurSchema() {
$schema = [
'fields' => [
'id' => ['type' => 'varchar', 'not null' => TRUE, 'length' => 255],
'id' => ['type' => 'varchar', 'not null' => TRUE, 'length' => 190],
'data' => ['type' => 'text', 'length' => 65535],
],
'primary key' => ['id'],
Expand Down

0 comments on commit 2eabfc9

Please sign in to comment.