From 9244d38c84aa3735c273bfb480fe0ada9606d158 Mon Sep 17 00:00:00 2001 From: Bryan Crowe <bryan@bryan-crowe.com> Date: Tue, 5 Aug 2014 23:26:43 -0400 Subject: [PATCH] Update password column length in other languages, refs #1545 --- fr/tutorials-and-examples/blog-auth-example/auth.rst | 2 +- ja/tutorials-and-examples/blog-auth-example/auth.rst | 2 +- pt/tutorials-and-examples/blog-auth-example/auth.rst | 2 +- sr/tutorials-and-examples/blog-auth-example/auth.rst | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/fr/tutorials-and-examples/blog-auth-example/auth.rst b/fr/tutorials-and-examples/blog-auth-example/auth.rst index 1377feee5c..b72e292203 100644 --- a/fr/tutorials-and-examples/blog-auth-example/auth.rst +++ b/fr/tutorials-and-examples/blog-auth-example/auth.rst @@ -17,7 +17,7 @@ pour contenir les données de notre user:: CREATE TABLE users ( id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY, username VARCHAR(50), - password VARCHAR(50), + password VARCHAR(255), role VARCHAR(20), created DATETIME DEFAULT NULL, modified DATETIME DEFAULT NULL diff --git a/ja/tutorials-and-examples/blog-auth-example/auth.rst b/ja/tutorials-and-examples/blog-auth-example/auth.rst index 4bcf5b12ae..9a5ff3c445 100644 --- a/ja/tutorials-and-examples/blog-auth-example/auth.rst +++ b/ja/tutorials-and-examples/blog-auth-example/auth.rst @@ -12,7 +12,7 @@ CREATE TABLE users ( id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY, username VARCHAR(50), - password VARCHAR(50), + password VARCHAR(255), role VARCHAR(20), created DATETIME DEFAULT NULL, modified DATETIME DEFAULT NULL diff --git a/pt/tutorials-and-examples/blog-auth-example/auth.rst b/pt/tutorials-and-examples/blog-auth-example/auth.rst index be0d67d7de..a7e1b81254 100644 --- a/pt/tutorials-and-examples/blog-auth-example/auth.rst +++ b/pt/tutorials-and-examples/blog-auth-example/auth.rst @@ -14,7 +14,7 @@ Primeiro, vamos criar uma nova tabela na nossa base de dados do blog para armaze CREATE TABLE users ( id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY, username VARCHAR(50), - password VARCHAR(50), + password VARCHAR(255), role VARCHAR(20), created DATETIME DEFAULT NULL, modified DATETIME DEFAULT NULL diff --git a/sr/tutorials-and-examples/blog-auth-example/auth.rst b/sr/tutorials-and-examples/blog-auth-example/auth.rst index 97d40c2c59..8854a58625 100644 --- a/sr/tutorials-and-examples/blog-auth-example/auth.rst +++ b/sr/tutorials-and-examples/blog-auth-example/auth.rst @@ -15,7 +15,7 @@ First, let's create a new table in our blog database to hold our users' data:: CREATE TABLE users ( id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY, username VARCHAR(50), - password VARCHAR(50), + password VARCHAR(255), role VARCHAR(20), created DATETIME DEFAULT NULL, modified DATETIME DEFAULT NULL