https://github.com/yolgesanchez/erp_system_database
SQL Script to run the database dedicated to the ERP System Server
https://github.com/yolgesanchez/erp_system_database
database erp postgresql
Last synced: about 2 months ago
JSON representation
SQL Script to run the database dedicated to the ERP System Server
- Host: GitHub
- URL: https://github.com/yolgesanchez/erp_system_database
- Owner: YolgeSanchez
- Created: 2024-10-21T20:01:59.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-10-21T22:18:56.000Z (over 1 year ago)
- Last Synced: 2025-09-15T18:53:50.681Z (10 months ago)
- Topics: database, erp, postgresql
- Language: PLpgSQL
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🏪 Store ERP System Database Setup
Welcome to the Store ERP System Database repository! This project provides the SQL script needed to set up a PostgreSQL database for managing essential operations in a store-based ERP system, such as inventory, sales, and customer management.
## 📋 Prerequisites
Before you can run the database script, ensure that you have the following installed:
### 1. 🐘 PostgreSQL
PostgreSQL is the database management system you’ll use.
👉 Download PostgreSQL [here](https://www.postgresql.org/download/).
### 2. 🖥️ pgAdmin
pgAdmin is a user-friendly interface for managing your PostgreSQL databases.
👉 Download pgAdmin [here](https://www.pgadmin.org/download/).
## 🚀 Setting Up the Database
Follow these steps to set up the ERP system database:
### 1. 🔑 Open pgAdmin
Start pgAdmin and connect to your local PostgreSQL server.
📝 You may be prompted to set up a master password if it's your first time using pgAdmin.
### 2. 🗂️ Create a New Database
In the pgAdmin dashboard, right-click on "Databases" in the left-hand menu.
Select "Create" > "Database...".
Enter a name for your database (e.g., store_erp) and hit Save.
### 3. ✏️ Open the Query Tool
Right-click on the newly created database (store_erp) and select "Query Tool".
This will open an editor where you can run SQL commands.
### 4. 📜 Run the SQL Script
Copy the SQL script from this repository.
Paste it into the Query Tool.
Click the Execute button (⚡) to run the script and create your tables.
### 5. 🔍 Verify Database Structure
After execution, you’ll see the database tables like inventory, customers, orders, and more under the "Schemas" section.
Explore the tables to ensure everything is set up.
### 6. 🔗 Connect to the ERP Backend
Now your database is ready! You can connect it to the backend of your ERP system to handle store operations efficiently.
👉 Get the backend here in this [erp_system_server](https://github.com/YolgeSanchez/erp_system_server) repository of mine.
## 📚 Additional Resources
For further assistance on PostgreSQL and pgAdmin, check out:
📖 [PostgreSQL Docs](https://www.postgresql.org/docs/)
📖 [pgAdmin Docs](https://www.pgadmin.org/docs/)
---
If you found this database helpful, please ⭐️ this repository! Your support is greatly appreciated. 😊