Skip to content

Commit c7acee6

Browse files
committed
docs: add database schema requirements.
1 parent 186e5f6 commit c7acee6

File tree

2 files changed

+18
-0
lines changed

2 files changed

+18
-0
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,15 @@ if (isValid) {
110110
}
111111
```
112112

113+
### Database Storage Requirements
114+
115+
```sql
116+
-- Recommended schema
117+
CREATE TABLE users (
118+
password VARCHAR(258) -- Required minimum: 258 characters for hash storage
119+
);
120+
```
121+
113122
## Benchmarks
114123

115124
```bash

docs/README.pt-BR.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,15 @@ if (ehValida) {
110110
}
111111
```
112112

113+
### Requisitos de armazenamento da base de dados
114+
115+
```sql
116+
-- Esquema recomendado
117+
CREATE TABLE users (
118+
password VARCHAR(258) -- Mínimo exigido: 258 caracteres para armazenamento de hash
119+
);
120+
```
121+
113122
## Benchmarks
114123

115124
```bash

0 commit comments

Comments
 (0)