Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/reem-lab/vet-clinic
The project contain database created using a relational database. to store the information for clinic, so you can store the information for all the animals that come and treat in this clinic and the visits, the specializations and the vets there. ๐ฆฎ๐พ๐ด๐ฉ๐ปโโ๏ธ
https://github.com/reem-lab/vet-clinic
database postgresql sql
Last synced: 5 days ago
JSON representation
The project contain database created using a relational database. to store the information for clinic, so you can store the information for all the animals that come and treat in this clinic and the visits, the specializations and the vets there. ๐ฆฎ๐พ๐ด๐ฉ๐ปโโ๏ธ
- Host: GitHub
- URL: https://github.com/reem-lab/vet-clinic
- Owner: Reem-lab
- Created: 2022-03-21T21:46:42.000Z (almost 3 years ago)
- Default Branch: develop
- Last Pushed: 2022-03-29T20:08:35.000Z (almost 3 years ago)
- Last Synced: 2025-01-09T15:48:01.124Z (6 days ago)
- Topics: database, postgresql, sql
- Language: PLpgSQL
- Homepage:
- Size: 24.4 KB
- Stars: 8
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![](https://img.shields.io/static/v1?label=BY&message=Reemoz&color=pink)
## Vet Clinic
> The project contain database created using a relational database. to store the information for clinic, so you can store the information for all the animals that come and treat in this clinic and the visits, the specializations and the vets there. ๐ฆฎ๐พ๐ด๐ฉ๐ปโโ๏ธ
## Scheme Diagram
Click [this link](https://dbdiagram.io/d/62436694bed6183873202982) to see the scheme diagram for this project. Hover over the lines or the row to get info on the relations with other tables
## Getting Started
This repository includes files with plain SQL that can be used to recreate a database:
### Requirements
- PostgreSQL server installed and running
- psql installed### Clone this repository
```bash
$ git clone [email protected]:Reem-lab/vet-clinic.git
$ cd vet-clinic
```
1. Connect to your PostgreSQL server with `psql`
```bash
psql
```
2. Create the database `vet-clinic`
```bash
CREATE DATABASE vet-clinic;
```
3. Connect to your database `vet-clinic`
```bash
\c vet-clinic
```- Use [schema.sql](./schema.sql) to create all tables.
- Use [data.sql](./data.sql) to populate tables with sample data.
- Check [queries.sql](./queries.sql) for examples of queries that can be run on a newly created database. **Important note: this file might include queries that make changes in the database (e.g., remove records). Use them responsibly!**## Authors
๐ค **Reem**
Platform | Badge |
--- | --- |
**GitHub** | [@Reem-lab](https://github.com/Reem-lab)
**Twitter** | [Rem79940127](https://twitter.com/Rem79940127)
**LinkdIn** | [reem-janina](https://www.linkedin.com/in/reem-janina-ab74ab21a/):bust_in_silhouette: **Andrรฉs Felipe Arroyave Naranjo**
- GitHub: [@JohnFTitor](https://github.com/JohnFTitor)
- Twitter: [@johnftitor](https://twitter.com/johnftitor)
- LinkedIn: [Andres](https://www.linkedin.com/in/andresarroyavenaranjo/?locale=en_US)## ๐ค Contributing
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](../../issues/).
## Show your support
Give a โญ๏ธ if you like this project!
## Acknowledgments
- Hat tip to anyone whose code was used
- Inspiration
- etc## ๐ License
This project is [MIT](./MIT.md) licensed.