Skip to content

Commit

Permalink
Update fr/tutorials-and-examples/simple-acl-controlled-application/si…
Browse files Browse the repository at this point in the history
…mple-acl-controlled-application.rst

J'ai changé "nom_user" en "username" et "mot de passe" en "password", sinon le tuto ne fonctionne si on 'copie-colle' les textes et de plus les mots de passe ne sont pas haché(conventions CakePHP).
  • Loading branch information
kh12e committed Jan 21, 2013
1 parent e4694db commit b8c6279
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ application. Exécutez les commandes SQL suivantes sur votre base de données::

CREATE TABLE users (
id INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
nom_user VARCHAR(255) NOT NULL UNIQUE,
mot_de_passe CHAR(40) NOT NULL,
username VARCHAR(255) NOT NULL UNIQUE,
password CHAR(40) NOT NULL,
group_id INT(11) NOT NULL,
created DATETIME,
modified DATETIME
Expand Down

0 comments on commit b8c6279

Please sign in to comment.