Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

Commit

Permalink
Adjusted the length of the uid on mysql (cache tag fallback)
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Stark committed May 2, 2018
1 parent 152b4cf commit ab182f8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [1.3.3] - 2018-05-02
### Changed
- Adjusted the length of the uid on mysql (cache tag fallback)

## [1.3.2] - 2018-04-05
### Changed
- Changed version constraint to `craftcms/cms: ^3.0.0`
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ostark/upper",
"description": "A cache plugin for Craft - supporting multiple Edge Caches",
"type": "craft-plugin",
"version": "1.3.2",
"version": "1.3.3",
"keywords": [
"craft",
"cms",
Expand Down
2 changes: 1 addition & 1 deletion src/migrations/Install.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public function safeUp()
if ($this->getDb()->getIsMysql()) {

$this->createTable(Plugin::CACHE_TABLE, [
'uid' => $this->string(32)->notNull()->unique(),
'uid' => $this->string(40)->notNull()->unique(),
'url' => $this->string(255)->notNull(),
'headers' => $this->text()->defaultValue(null),
'tags' => $this->string(255)->notNull(),
Expand Down

0 comments on commit ab182f8

Please sign in to comment.