Skip to content

Commit

Permalink
Merge pull request #3314 from SpaceFox/fix-table
Browse files Browse the repository at this point in the history
Fix #3304 - colonne en trop dans une table
  • Loading branch information
SpaceFox committed Jan 21, 2016
2 parents 367a947 + a491a62 commit 4380996
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions update.md
Original file line number Diff line number Diff line change
Expand Up @@ -368,6 +368,17 @@ RECAPTCHA_PRIVATE_KEY = 'la-cle-ici'
Actions à faire pour mettre en prod la version 16
=================================================

Réparer la table HS
-------------------

**Avant déploiement :**

1. Se connecter au serveur MySQL : `mysql -u root -p`
2. Se mettre sur la base de ZdS : `use zdsdb;`
3. Regarder le contenu de la table oauth2_provider_accesstoken : `describe oauth2_provider_accesstoken;`
4. Si cette table contient une colonne nommée `skip_authorization`, la supprimer : `alter table oauth2_provider_accesstoken drop column skip_authorization;`
5. Quitter MySQL

Mise à jours de la version de Haystack à la 4.1
-----------------------------------------------

Expand Down

0 comments on commit 4380996

Please sign in to comment.