Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Juanies authored Jun 14, 2024
1 parent 7689dcd commit 3b9a1ae
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,5 +99,21 @@ Si te gustaría contribuir al proyecto, sigue estos pasos:
7. Contribuir a proyectos de código abierto es una excelente manera de mejorar tus habilidades y ayudar a la comunidad. ¡Buena suerte con tu contribución a PyE!
#### Base de datos
```SQL
CREATE TABLE users(
id SERIAL PRIMARY KEY,
username VARCHAR(255) NOT NULL
);

CREATE TABLE oferta (
id SERIAL PRIMARY KEY,
iduser INT REFERENCES usuario(id)
);

CREATE TABLE reto (
id SERIAL PRIMARY KEY,
iduser INT REFERENCES usuario(id)
);

```

0 comments on commit 3b9a1ae

Please sign in to comment.