Skip to content

Commit

Permalink
pkp/pkp-lib#2493 Use smallInteger or boolean instead of tinyInt (lara…
Browse files Browse the repository at this point in the history
  • Loading branch information
asmecher committed Aug 27, 2020
1 parent 2f7557f commit 5bb384d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UsageStatsMigration.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function up() {
$table->string('region', 2)->nullable();
$table->string('city', 255)->nullable();
$table->string('load_id', 255);
$table->tinyInteger('file_type')->nullable();
$table->smallInteger('file_type')->nullable();
});
}
}

0 comments on commit 5bb384d

Please sign in to comment.