Skip to content

Commit

Permalink
fix #6: Increase lti2_nonce value varchar size
Browse files Browse the repository at this point in the history
  • Loading branch information
Izumi-kun committed Jun 10, 2018
1 parent 1297e6a commit 1822c2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/migrations/M180512000000Init.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public function up()
$nonce = '{{%lti2_nonce}}';
$this->createTable($nonce, [
'consumer_pk' => $this->integer()->notNull(),
'value' => $this->string(32)->notNull(),
'value' => $this->string(255)->notNull(),
'expires' => $this->dateTime()->notNull(),
], $tableOptions);
$this->addPrimaryKey("pk-nonce", $nonce, ['consumer_pk', 'value']);
Expand Down

0 comments on commit 1822c2b

Please sign in to comment.