File tree Expand file tree Collapse file tree 3 files changed +16
-1
lines changed
src/Resources/config/doctrine Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 1
1
UPGRADE
2
2
=======
3
3
4
+ - [ 2.0.0] ( #2.0.0 )
4
5
- [ 1.2.0] ( #1.2.0 )
5
6
- [ 1.1.0] ( #1.1.0 )
6
7
- [ 0.4.0] ( #0.4.0 )
7
8
9
+ ### 2.0.0 (unreleased)
10
+
11
+ For the utf8mb4 compatibility with mysql some fields need to be shorten:
12
+
13
+ ``` bash
14
+ bin/console doctrine:schema:update
15
+ ```
16
+
8
17
### 1.2.0
9
18
10
19
In the database table ` ta_task_executions ` a new field was introduced. Run following
Original file line number Diff line number Diff line change 36
36
"psr-4" : {
37
37
"Task\\ TaskBundle\\ Tests\\ " : " tests"
38
38
}
39
+ },
40
+ "minimum-stability" : " dev" ,
41
+ "extra" : {
42
+ "branch-aliases" : {
43
+ "dev-develop" : " 2.0-dev"
44
+ }
39
45
}
40
46
}
Original file line number Diff line number Diff line change 17
17
<field name =" intervalExpression" type =" string" length =" 255" nullable =" true" />
18
18
<field name =" firstExecution" type =" datetime" nullable =" true" />
19
19
<field name =" lastExecution" type =" datetime" nullable =" true" />
20
- <field name =" systemKey" type =" string" nullable =" true" unique =" true" />
20
+ <field name =" systemKey" type =" string" nullable =" true" unique =" true" length = " 191 " />
21
21
<field name =" workload" type =" object" />
22
22
23
23
</entity >
You can’t perform that action at this time.
0 commit comments