Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rubydevi/new_clinic
Interpret the database diagram, and implement the SQL needed to build that database.
https://github.com/rubydevi/new_clinic
Last synced: about 5 hours ago
JSON representation
Interpret the database diagram, and implement the SQL needed to build that database.
- Host: GitHub
- URL: https://github.com/rubydevi/new_clinic
- Owner: rubydevi
- License: mit
- Created: 2023-08-29T10:28:15.000Z (about 1 year ago)
- Default Branch: dev
- Last Pushed: 2023-08-29T12:42:18.000Z (about 1 year ago)
- Last Synced: 2023-08-29T17:45:29.590Z (about 1 year ago)
- Size: 131 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 📗 Table of Contents
- [📖 About the Project](#about-project)
- [Tech Stack](#tech-stack)
- [Key Features](#key-features)
- [💻 Getting Started](#getting-started)
- [Setup](#setup)
- [Prerequisites](#prerequisites)
- [Install](#install)
- [Usage](#usage)
- [👥 Authors](#authors)
- [🔭 Future Features](#future-features)
- [🤝 Contributing](#contributing)
- [⭐️ Show your support](#support)
- [🙏 Acknowledgements](#acknowledgements)
- [📝 License](#license)In this project, we have used a database diagram and we'll be writing schema based on the provided diagram to create the data structure for the clinic.
Database
- PostgreSQL
- **Create Database**
- **Create Table**
- **Insert Data**
### Prerequisites
This repository includes files with plain SQL that can be used to recreate a database:
- 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.
You will need `PostgreSQL` already installed.
Run this code on your terminaml to create database:
```sh
createdb clinic;
```
### Setup
Clone this repository to your desired folder:
```sh
cd my-folder
git clone [email protected]:rubydevi/new_clinic.git
cd new_clinic
```
### Install
Install this project with:
```sh
gem install
```
### Usage
Run the queries on your local database to use this project.
**Important note: this file might include queries that make changes in the database (e.g., remove records). Use them responsibly!**
👤 **Chongtham Ruby Devi**
- GitHub: [@rubydevi](https://github.com/rubydevi)
- Twitter: [@arieabyss](https://twitter.com/ariesabyss)
- LinkedIn: [Chongtham Ruby Devi](https://www.linkedin.com/in/chongtham-bhoomika/)
👤 **Luzinda Douglas**
- GitHub: [@LdouglasOT](https://github.com/LdouglasOT)
- Twitter: [@LdouglasOT](https://twitter.com/LdouglasOT)
- LinkedIn: [LdouglasOT](https://www.linkedin.com/in/LdouglasOT/)
- CRUD operations.
- Front End.
- User Management.
Contributions, issues, and feature requests are welcome!
Feel free to check the [issues page](https://github.com/rubydevi/new_clinic/issues).
If you like this project please leave a star, I'd really appreciate it.
- I'd like to thank Microverse for this wonderful README template.
This project is [MIT](https://github.com/rubydevi/new_clinic/blob/main/LICENSE) licensed.