Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions UPGRADE.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
UPGRADE
=======

- [2.0.0](#2.0.0)
- [1.2.0](#1.2.0)
- [1.1.0](#1.1.0)
- [0.4.0](#0.4.0)

### 2.0.0 (unreleased)

For the utf8mb4 compatibility with mysql some fields need to be shorten:

```bash
bin/console doctrine:schema:update
```

### 1.2.0

In the database table `ta_task_executions` a new field was introduced. Run following
Expand Down
6 changes: 6 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,11 @@
"psr-4": {
"Task\\TaskBundle\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"extra": {
"branch-aliases": {
"dev-master": "2.0-dev"
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if we create a develop branch for 2.0 we need to change this branch alias

}
}
}
2 changes: 1 addition & 1 deletion src/Resources/config/doctrine/Task.orm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<field name="intervalExpression" type="string" length="255" nullable="true"/>
<field name="firstExecution" type="datetime" nullable="true"/>
<field name="lastExecution" type="datetime" nullable="true"/>
<field name="systemKey" type="string" nullable="true" unique="true"/>
<field name="systemKey" type="string" nullable="true" unique="true" length="191"/>
<field name="workload" type="object"/>

</entity>
Expand Down