Skip to content

Commit

Permalink
Merge branch 'hotfix/0.15.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
polosson committed Sep 21, 2021
2 parents 56ab507 + 60ead22 commit 1e21ce9
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
Expand Up @@ -4,6 +4,10 @@ Tous les changements notables sur le projet sont documentés dans ce fichier.

Ce projet adhère au principe du [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.15.1 (2021-09-21)

- Corrige une migration avec l'utilisation de préfixe de table (#288).

## 0.15.0 (2021-09-08)

- Change l'étape 3 de création / modification d'événement : ajoute une frise temporelle permettant de visualiser les assignations de tous les techniciens pour la période de l'événement, et d'assigner les techniciens à des horaires précis (#193).
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.15.0
0.15.1
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function up()
->changeColumn('end_time', 'datetime', ['null' => false])
->save();

$table->rename('event_technicians')->update();
$table->rename(sprintf('%sevent_technicians', $prefix))->update();
}

public function down()
Expand Down

0 comments on commit 1e21ce9

Please sign in to comment.