Skip to content

Commit 7f19b06

Browse files
authored
Merge pull request #5 from factorio-item-browser/bugfix/unescaped-columns
bugfix/unescaped-columns
2 parents 95f420e + 52d5351 commit 7f19b06

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## 2.1.1 - 2019-08-11
4+
5+
### Fixed
6+
7+
- Some unescaped column names leading to SQL errors.
8+
39
## 2.1.0 - 2019-07-15
410

511
### Added

config/doctrine/RecipeIngredient.orm.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
</options>
2828
</field>
2929

30-
<field name="order" type="smallint" column-definition="TINYINT">
30+
<field name="order" column="`order`" type="smallint" column-definition="TINYINT">
3131
<options>
3232
<option name="unsigned">true</option>
3333
<option name="comment">The order of the ingredient in the recipe.</option>

config/doctrine/RecipeProduct.orm.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
</options>
4242
</field>
4343

44-
<field name="order" type="smallint" column-definition="TINYINT">
44+
<field name="order" column="`order`" type="smallint" column-definition="TINYINT">
4545
<options>
4646
<option name="unsigned">true</option>
4747
<option name="comment">The order of the ingredient in the recipe.</option>

0 commit comments

Comments
 (0)