@@ -30,7 +30,7 @@ |
||
30 | 30 | 'redirect_uri' => $this->text()->notNull()->comment('Redirect Uri'), |
31 | 31 | 'expires' => $this->integer()->notNull()->comment('Expires'), |
32 | 32 | 'scope' => $this->text()->comment('Scope'), |
33 | - ],$tableOptions); |
|
33 | + ], $tableOptions); |
|
34 | 34 | |
35 | 35 | $this->addPrimaryKey('pk', $this->tableName, 'authorization_code'); |
36 | 36 | $this->createIndex('ix_authorization_code_expires', $this->tableName, 'expires'); |
@@ -29,7 +29,7 @@ |
||
29 | 29 | 'user_id' => $this->integer()->unsigned()->comment('User Id'), |
30 | 30 | 'expires' => $this->integer()->notNull()->comment('Expires'), |
31 | 31 | 'scope' => $this->text()->comment('Scope'), |
32 | - ],$tableOptions); |
|
32 | + ], $tableOptions); |
|
33 | 33 | |
34 | 34 | $this->addPrimaryKey('pk', $this->tableName, 'refresh_token'); |
35 | 35 | $this->createIndex('ix_refresh_token_expires', $this->tableName, 'expires'); |